为什么我在安装vundle后无法获取vimrc?

时间:2012-11-13 16:57:13

标签: vim

我正在尝试在编辑vimrc后让我的Vim动态更新。所以我按照Vimcast的说明操作,每次点击保存时基本上都会输出vimrc。

但是由于某种原因这不起作用(当我保存我的vimrc它没有给出任何错误时),所以我决定手动运行source $HOME/.vimrc,这就是我得到的:

    -bash:  Configuration file for vim
            set nocompatible                              : command not found
    -bash:  Plugin Management {
            filetype off                                  : command not found
    -bash: .vimrc: line 7: syntax error near unexpected token `('
    -bash: .vimrc: line 7: `        call vundle#rc()'

这是我的Vim信息(我正在运行Mac OS X 10.7.3):

    VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Jul 31 2011 19:27:29)
    Compiled by root@apple.com
    Normal version without 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 +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
    -xterm_clipboard -xterm_save 
    system vimrc file: "$VIM/vimrc"
    user vimrc file: "$HOME/.vimrc"
    user exrc file: "$HOME/.exrc"
    fall-back for $VIM: "/usr/share/vim"
    Compilation: gcc -c -I. -D_FORTIFY_SOURCE=0 -Iproto -DHAVE_CONFIG_H -arch i386 -arch x86_64 -g -Os -pipe
    Linking: gcc -arch i386 -arch x86_64 -o vim -lncurses

有人可以帮我一把吗?非常感谢!

== UPDATE ==

正如大家所指出的,我混淆了Vim源代码和Bash源命令 - 谢谢。

现在我尝试在Vim中运行源代码,但它没有错误。但是,它似乎仍然没有更新我的vimrc。我的vimrc中有这一行

    nnoremap <leader><TAB> :sp ~/.vimrc<CR>

无论我是否注释掉该行,在运行<leader><TAB>后点击source ~/.vimrc仍然会在分屏中打开我的vimrc。

1 个答案:

答案 0 :(得分:1)

那是:source ...,是在Vim内部执行的。从您的输出中,您似乎错误地在Bash shell中执行了它(可能是通过:!source); source也是一个Bash内置命令(如.),用于将文件内容作为Bash命令执行。

要调试不适合您的:autocmd,您可以暂时添加

:echomsg "executing .vimrc"

或用.vimrc:15verbose write以查看正在发生的事情。