vim 사용중 fugitive 에러 발생
OS/linux 2021. 12. 6. 16:56반응형
vi 로 파일을 열때마다 아래 에러 메세지가 발생함
Error detected while processing ~/.vim/bundle/vim-fugitive/plugin/fugitive.vim: line 470: E1208: -complete used without -nargs line 471: E1208: -complete used without -nargs line 475: E1208: -complete used without -nargs line 478: E1208: -complete used without -nargs Press ENTER or type command to continue
수정 방법
fugitive 플러그인 업데이트로 문제 수정됨, 관련 업데이트가 있었던듯...
~/.vim/bundle/vim-fugitive │ master $ git pull remote: Enumerating objects: 1911, done. remote: Counting objects: 100% (1719/1719), done. remote: Compressing objects: 100% (490/490), done. remote: Total 1911 (delta 944), reused 1532 (delta 837), pack-reused 192 Receiving objects: 100% (1911/1911), 417.87 KiB | 681.00 KiB/s, done. Resolving deltas: 100% (947/947), completed with 10 local objects. From https://github.com/tpope/vim-fugitive 0e35c9b..2064312 master -> origin/master * [new branch] double-status -> origin/double-status * [new branch] parallel-status -> origin/parallel-status * [new tag] trashtest -> trashtest * [new tag] v3.3 -> v3.3 * [new tag] v3.4 -> v3.4 * [new tag] v3.5 -> v3.5 * [new tag] v3.6 -> v3.6 Updating 0e35c9b..2064312
반응형