VIM 以消息“Press ENTER or type command to continue”开始,它发生在 VIM,但不是 GVIM,GVIM 启动时没有显示“Press ENTER or type command to continue”。
我的 .vimrc 文件中的 Vundle 设置,操作系统是 windows 7。
"""""""""""""""""""""""""""Vundle start"""""""""""""""""""""""""""""""""
" set the runtime path to include Vundle and initialize
set rtp+=C:/Users/penpan/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
Plugin 'L9'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Avoid a name conflict with L9
Plugin 'user/L9', {'name': 'newL9'}
"NERDTree
Plugin 'https://github.com/scrooloose/nerdtree.git'
"color scheme molokai
Plugin 'tomasr/molokai'
"Match Tag
Plugin 'Valloric/MatchTagAlways'
"ctags
Plugin 'szw/vim-tags'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
""""""""""""""""""""""""""""End Vundle"""""""""""""""""""""""""""""""""
我评论这一行:
call vundle#end() " required
然后就可以了!VIM 启动时不显示按回车提示。所以我相信这个电话会使提示发生。我加静音!在它前面如下:
silent! call vundle#end()
但没用,vim 还是显示提示。并在 .vimrc 中添加以下内容:
set shortmess+=T
set cmdheight=2
不起作用。
我试图在谷歌中找到答案,提出了很多建议,但没有一个有效:(
Vundle 是一个常见的插件,有没有人和我有同样的问题?
感谢您是否可以提供帮助。
只有当我在下面删除时,按回车提示才会消失:
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
""""""""""""""""""""""""""""End Vundle"""""""""""""""""""""""""""""""""
colorscheme molokai "because molokai is installed by Vundle, so it only work after Vundle is lunched!
==================================固定================ ==================== 在我在 vundle 配置中删除插件 MatchTagAlways 后,问题已修复。以下是我发现问题的步骤:
- 首先,你需要知道是什么配置区域导致了这个问题,对我来说,它是 Vundle 的配置。
- 添加:重绘!在调用 vundle#begin() 并调用 vundle#end() 之后
- 打开vim,它会在按回车消息上方显示错误消息
前:
按 ENTER 或键入命令继续
后:
MatchTagAlways 不可用:需要 python。
按 ENTER 或键入命令继续
- 现在我们找到了根本原因。修复它,或删除插件。
ps: gvim 有 +python3/dyn 支持,但是 vim 没有。所以如果安装了插件 MatchTagAlways,vim 就会出现错误。