summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-04-30 11:54:40 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-04-30 11:54:40 +0900
commit2d61691bb2641f53f3503c4b5d8ea57b0736da4d (patch)
tree3f3ce6e001a99fb68a8d67998fe5412217cd94f0
parenteba9e04e2ef2b0c17c0f80bde92469409bec0713 (diff)
0.16.70.16.7
-rw-r--r--CHANGELOG.md7
-rwxr-xr-xinstall2
-rw-r--r--man/man1/fzf-tmux.12
-rw-r--r--src/constants.go2
4 files changed, 10 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3d1c8bed..e2cdc300 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 5eb40cc0..9a512076 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 10e948b8..71b4e359 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 42289843..941fdcc4 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