Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/vim/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Vim 键绑定以打开新选项卡并打开FuzzyFinder_Vim - Fatal编程技术网

Vim 键绑定以打开新选项卡并打开FuzzyFinder

Vim 键绑定以打开新选项卡并打开FuzzyFinder,vim,Vim,我已经安装了FuzzyFinder。正如您现在可能要打开FuzzyFinder文件搜索器一样,我必须编写:FufFile 现在,我想创建一个键绑定,打开一个新选项卡并打开FuzzyFinde文件搜索器。这就是我所尝试的: map tn :tabnew :FufFile pattern:<enter> map tn:tabnew:FufFile模式: 但它不起作用,它只是说“E172:只允许一个文件名” 有什么想法吗 Javier您可以定义运行两个命令的键映射: :map tn :

我已经安装了FuzzyFinder。正如您现在可能要打开FuzzyFinder文件搜索器一样,我必须编写
:FufFile

现在,我想创建一个键绑定,打开一个新选项卡并打开FuzzyFinde文件搜索器。这就是我所尝试的:

map tn :tabnew :FufFile pattern:<enter>
map tn:tabnew:FufFile模式:
但它不起作用,它只是说
“E172:只允许一个文件名”

有什么想法吗


Javier

您可以定义运行两个命令的键映射:

:map tn :tabnew \| FufFile pattern:<CR>
:映射tn:tabnew\| FufFile模式:

您只是想在新的选项卡页中打开它吗?FuzzyFinder已经为@Michael设置了一个键绑定,我正在按Ctrl+l(ell),但它什么都不做。。