Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法弄清楚如何更改 VIM 中模糊查找的默认触发器。
默认触发器是 :FZF
我希望触发器是 :fzf
谢谢!
您可以fzf在.vimrc.
fzf
.vimrc
nnoremap <silent> <C-p> :fzf<CR>
:fzf当您Ctrl+P在正常模式下发出时,这将调用。
:fzf
Ctrl+P
您可以为命令行创建一个缩写
cnoreabbrev <expr> fzf getcmdtype() == ":" && getcmdline() == 'fzf' ? 'FZF' : 'fzf'
然后,如果您键入:fzf后跟 enter 或后跟空格,它将自动交换为:FZF.
:FZF