summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-10-23 22:00:32 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-10-23 22:00:32 +0900
commit9f30ca292355db7af200c41fac45882b529a56f9 (patch)
tree45fc54205d87bc1acb0697594ffa3b7932f482c0
parent37f2d8f7952879bffd1326b88e4f0069ec1188d7 (diff)
0.15.50.15.5
-rw-r--r--CHANGELOG.md7
-rwxr-xr-xinstall4
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/constants.go2
5 files changed, 12 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7bbe4f41..d7f4df97 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 7a5b7972..5d3baf83 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 b01f0b7b..68efe994 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 96167014..8479cec8 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 a96c362c..bec3bb6c 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