From 2d61691bb2641f53f3503c4b5d8ea57b0736da4d Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 30 Apr 2017 11:54:40 +0900 Subject: [PATCH] 0.16.7 --- CHANGELOG.md | 7 +++++++ install | 2 +- man/man1/fzf-tmux.1 | 2 +- src/constants.go | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d1c8be..e2cdc30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ CHANGELOG ========= +0.16.7 +------ +- Added support for `ctrl-alt-[a-z]` key chords +- CTRL-Z (SIGSTOP) now works with fzf +- fzf will export `$FZF_PREVIEW_WINDOW` so that the scripts can use it +- Bug fixes and improvements in Vim plugin and shell extensions + 0.16.6 ------ - Minor bug fixes and improvements diff --git a/install b/install index 5eb40cc..9a51207 100755 --- a/install +++ b/install @@ -2,7 +2,7 @@ set -u -version=0.16.6 +version=0.16.7 auto_completion= key_bindings= update_config=2 diff --git a/man/man1/fzf-tmux.1 b/man/man1/fzf-tmux.1 index 10e948b..71b4e35 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 "Mar 2017" "fzf 0.16.6" "fzf-tmux - open fzf in tmux split pane" +.TH fzf-tmux 1 "Apr 2017" "fzf 0.16.7" "fzf-tmux - open fzf in tmux split pane" .SH NAME fzf-tmux - open fzf in tmux split pane diff --git a/src/constants.go b/src/constants.go index 4228984..941fdcc 100644 --- a/src/constants.go +++ b/src/constants.go @@ -8,7 +8,7 @@ import ( const ( // Current version - version = "0.16.6" + version = "0.16.7" // Core coordinatorDelayMax time.Duration = 100 * time.Millisecond