From 9f30ca292355db7af200c41fac45882b529a56f9 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 23 Oct 2016 22:00:32 +0900 Subject: [PATCH] 0.15.5 --- CHANGELOG.md | 7 +++++++ install | 4 ++-- man/man1/fzf-tmux.1 | 2 +- man/man1/fzf.1 | 2 +- src/constants.go | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bbe4f4..d7f4df9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ CHANGELOG ========= +0.15.5 +------ +- Setting foreground color will no longer set background color to black + - e.g. `fzf --color fg:153` +- `--tiebreak=end` will consider relative position instead of absolute distance +- Updated `fzf#wrap` function to respect `g:fzf_colors` + 0.15.4 ------ - Added support for range expression in preview and execute action diff --git a/install b/install index 7a5b797..5d3baf8 100755 --- a/install +++ b/install @@ -2,8 +2,8 @@ set -u -[[ "$@" =~ --pre ]] && version=0.15.4 pre=1 || - version=0.15.4 pre=0 +[[ "$@" =~ --pre ]] && version=0.15.5 pre=1 || + version=0.15.5 pre=0 auto_completion= key_bindings= diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1 index b01f0b7..68efe99 100644 --- a/man/man1/fzf-tmux.1 +++ b/man/man1/fzf-tmux.1 @@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. .. -.TH fzf-tmux 1 "Oct 2016" "fzf 0.15.4" "fzf-tmux - open fzf in tmux split pane" +.TH fzf-tmux 1 "Oct 2016" "fzf 0.15.5" "fzf-tmux - open fzf in tmux split pane" .SH NAME fzf-tmux - open fzf in tmux split pane diff --git a/man/man1/fzf.1 b/man/man1/fzf.1 index 9616701..8479cec 100644 --- a/man/man1/fzf.1 +++ b/man/man1/fzf.1 @@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. .. -.TH fzf 1 "Oct 2016" "fzf 0.15.4" "fzf - a command-line fuzzy finder" +.TH fzf 1 "Oct 2016" "fzf 0.15.5" "fzf - a command-line fuzzy finder" .SH NAME fzf - a command-line fuzzy finder diff --git a/src/constants.go b/src/constants.go index a96c362..bec3bb6 100644 --- a/src/constants.go +++ b/src/constants.go @@ -8,7 +8,7 @@ import ( const ( // Current version - version = "0.15.4" + version = "0.15.5" // Core coordinatorDelayMax time.Duration = 100 * time.Millisecond