From b9b98ac5741afd2d0aa1e09f24b1614d4c91f15a Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 21 May 2026 20:35:04 +0900 Subject: [PATCH] Commands: Fix quotation mistake --- 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 3a8e846..b874a34 100755 --- a/autoload/fzf/vim.vim +++ b/autoload/fzf/vim.vim @@ -1302,7 +1302,7 @@ function! fzf#vim#commands(...) \ 'source': extend(extend(list[0:0], map(list[1:], 's:format_cmd(v:val)')), s:excmds()), \ 'sink*': s:function('s:command_sink'), \ 'options': '--ansi --expect '.s:conf('commands_expect', 'ctrl-x'). - \ " --tiebreak=index --header-lines 1 -x --prompt "Commands> " -n2,3,2..3 --tabstop=1 -d "\t" --list-border --header-border inline --inline-info --no-separator"}, a:000) + \ ' --tiebreak=index --header-lines 1 -x --prompt "Commands> " -n2,3,2..3 --tabstop=1 -d "\t" --list-border --header-border inline --inline-info --no-separator'}, a:000) endfunction " ------------------------------------------------------------------