vimpluginVundle.vim cannot be installed. There is an error, but I don't know the cause.

Asked 1 years ago, Updated 1 years ago, 109 views

I downloaded Vundle through github and entered and saved the script in github in the vimrc file. And then we run the vim . . .

Error detected while processing /Users/W_PARK/.vim/bundle/Vundle.vim/autoload/vundle.vim:
line    6:
.....

E15: Invalid expression: (has('signs'))^M
line   91:
E171: Missing :endif
...

line   47:
E15: Invalid expression: (has('signs'))^M
line   91:
E171: Missing :endif

(Optimized)

E15: Invalid expression: (has('signs'))^M
line   91:
E171: Missing :endif
Error detected while processing /Users/W_PARK/.vimrc:
line   31:
E117: Unknown function: vundle#end

Press ENTER or type command to continue

If it comes out like this, you can't even install the plug-in. I tried to google it and update vim, but the result is the sameHelp me

vim vimrc vi

2022-09-21 16:22

1 Answers

The vimrc file.

set nocompatible
filetype off

set rtp+=~/.vim/bundle/Vundle.vim

call vundle#begin()

Plugin 'VundleVim/Vundle.vim'

call vundle#end()
filetype plugin indent on


2022-09-21 16:22

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.