From c5ce7908ee86af7d4090d2007086444afb6ec1c9 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 28 Aug 2024 13:44:08 +0900 Subject: [PATCH] Require fzf 0.53.0 or above with --tmux Close https://github.com/junegunn/fzf/issues/3980 --- autoload/fzf/vim.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/fzf/vim.vim b/autoload/fzf/vim.vim index 85efc83..8a7788f 100755 --- a/autoload/fzf/vim.vim +++ b/autoload/fzf/vim.vim @@ -94,7 +94,7 @@ function! s:escape_for_bash(path) return escape(path, ' ') endfunction -let s:min_version = '0.23.0' +let s:min_version = '0.53.0' let s:is_win = has('win32') || has('win64') let s:is_wsl_bash = s:is_win && (exepath('bash') =~? 'Windows[/\\]system32[/\\]bash.exe$') let s:layout_keys = ['window', 'up', 'down', 'left', 'right']