在当前文件中找到单词时,需要先输入“/keyword”,但是看不到所有匹配的行,所以我尝试使用下面的命令做一个快捷方式,但是还是不行,请您帮忙检查一下失败的原因吗?
function! FindCurrentFile(pattern)
echo a:pattern
execute ":vimgrep" . a:pattern . " %"
execute ":cw"
endfunction
command! -nargs=1 Fi call FindCurrentFile(<args>)