l9.vim插件导致无效的表达式错误

时间:2011-05-03 18:15:23

标签: vim

我第一次尝试在linux上编译vim(redhat),所以请耐心等待。

我一直很高兴使用MacVim一年了,但最近我一直需要在linux服务器上通过ssh编辑更多文件。我一直厌倦了安装在这些服务器上的vim,所以我试图从源代码编译vim 7.3并让我的插件运行。我编译安装很好,但我想我错过了一个库或其他一些基本的东西,因为当我尝试运行vim时我得到:

Error detected while processing function l9#guardScriptLoading:
line    7:
E15: Invalid expression: 
E15: Invalid expression: a:l9Version > 0 && (a:l9Version > s:L9_VERSION_CURRENT ||
E15: Invalid expression: 
E15: Invalid expression: a:l9Version > 0 && (a:l9Version > s:L9_VERSION_CURRENT ||
line    8:
E10: \ should be followed by /, ? or &

我不知道这意味着什么。我安装了l9插件,包括自动加载库和插件文件。这是其中一个很难没有的插件。

这是我的vim编译的样子:

VIM - Vi IMproved 7.3 (2010 Aug 15, compiled May  3 2011 13:00:04)
Compiled by me
Huge version with GTK2 GUI.  Features included (+) or not (-):
+arabic +autocmd +balloon_eval +browse ++builtin_terms +byte_offset +cindent 
+clientserver +clipboard +cmdline_compl +cmdline_hist +cmdline_info +comments 
+conceal +cryptv +cscope +cursorbind +cursorshape +dialog_con_gui +diff 
+digraphs +dnd -ebcdic +emacs_tags +eval +ex_extra +extra_search +farsi 
+file_in_path +find_in_path +float +folding -footer +fork() +gettext 
-hangul_input +iconv +insert_expand +jumplist +keymap +langmap +libcall 
+linebreak +lispindent +listcmds +localmap -lua +menu +mksession +modify_fname 
+mouse +mouseshape +mouse_dec +mouse_gpm -mouse_jsbterm +mouse_netterm 
-mouse_sysmouse +mouse_xterm +multi_byte +multi_lang -mzscheme +netbeans_intg 
-osfiletype +path_extra +perl +persistent_undo +postscript +printer +profile 
+python -python3 +quickfix +reltime +rightleft +ruby +scrollbind +signs 
+smartindent -sniff +startuptime +statusline -sun_workshop +syntax +tag_binary 
+tag_old_static -tag_any_white -tcl +terminfo +termresponse +textobjects +title
 +toolbar +user_commands +vertsplit +virtualedit +visual +visualextra +viminfo 
+vreplace +wildignore +wildmenu +windows +writebackup +X11 -xfontset +xim 
+xsmp_interact +xterm_clipboard -xterm_save

有人知道我错过了什么吗?

1 个答案:

答案 0 :(得分:3)

您似乎没有取消设置compatible选项。你有一条线

set nocompatible

位于vimrc的顶部(它必须先于任何其他选项)?