【ubuntu】vim安装python自动补全插件(2)

按照上一篇的步骤安装插件,结果出现了几个问题

(1)无法识别标签命令:

Error detected while processing /usr/share/vim/vimrc:
line   57:
E475: Invalid argument: on 
line   65:
E492: Not an editor command: <a0><a0><a0>
line   66:
E475: Invalid argument: on    
line   67:
E15: Invalid expression: '/usr/share/vim/vim73/tools/pydiction/complete-dict'  
line   68:
E518: Unknown option: // 
line   69:
E474: Invalid argument: tabstop=4 
line   70:
E474: Invalid argument: shiftwidth=4 
line   71:
E488: Trailing characters: expandtab 
Press ENTER or type command to continue

出错原因:直接复制粘贴惹的祸,需去掉多余的空格和符号


(2)安装好后,按tab键没有效果。

原因:没开启提示对应的设置项, 可这样来设置-->

set showcmd     " Show (partial) command in status line.                                                                    
set showmatch       " Show matching brackets.                                                                                        
set ignorecase      " Do case insensitive matching                                                                                
set smartcase       " Do smart case matching                                                                                    
set incsearch       " Incremental search        


你可能感兴趣的:(【ubuntu】vim安装python自动补全插件(2))