pull/909/head 0.16.7
Junegunn Choi 7 years ago
parent eba9e04e2e
commit 2d61691bb2
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

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

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

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

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

Loading…
Cancel
Save