私はvim に関するドキュメントを読み、著者は.vimrcに挿入する必要があるコード行を提案していますが、それが何であるかはまったくわかりません。
command! -bang -nargs=* Find call fzf#vim#grep('rg --column --line-number --no-heading --fixed-strings --ignore-case --no-ignore --hidden --follow --glob "!.git/*" --color "always" '.shellescape(<q-args>), 1, <bang>0)
だから何であるcommand!
、-bang
、-nargs
など、?
command! -bang -nargs=* Find 'rg --column --line-number --no-heading --fixed-strings --ignore-case --no-ignore --hidden --follow --glob "!.git/*" --color "always"'
ですが、このコマンドは機能しますか?