This commit is contained in:
Junegunn Choi 2017-04-30 11:54:40 +09:00
parent eba9e04e2e
commit 2d61691bb2
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627
4 changed files with 10 additions and 3 deletions

View File

@ -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

View File

@ -2,7 +2,7 @@
set -u
version=0.16.6
version=0.16.7
auto_completion=
key_bindings=
update_config=2

View File

@ -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

View File

@ -8,7 +8,7 @@ import (
const (
// Current version
version = "0.16.6"
version = "0.16.7"
// Core
coordinatorDelayMax time.Duration = 100 * time.Millisecond