我在 OSX 和 Vim 中使用 Terminal.app。每次我尝试写入/保存一个特定文件(它恰好是一个 .scss 文件)时,Vim 似乎只是挂起。我知道它成功地写入了文件,但它永远不会让我重新控制。相反,我在底部看到文件名,光标在行尾闪烁。我试过 Ctrl-Esc、Ctrl-c 和 Ctrl-[ 都无济于事。
如果我然后退出 Terminal.app 并重新打开它,我可以看到卡住的 Vim 进程仍在 Activity Monitor 中运行。
我可以写其他文件就好了。
我也在使用 CodeKit 来观看 .scss 文件,但认为这可能是原因,我退出了 CodeKit 并尝试用 Vim 再次写入文件,但它仍然卡住了。
如果我使用 MacVim,它似乎确实可以正确编写,但它似乎无法通过 Terminal.app 工作。
任何建议将不胜感激,谢谢!
编辑
这是我当前的 .vimrc:https ://www.dropbox.com/s/1r72shv47f07crs/.vimrc
我正在使用 Vim 7.3,以下是详细信息:
VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Jun 20 2012 13:16:02)
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/dyn
-python3 +quickfix +reltime -rightleft +ruby/dyn +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
这就是我的 .bash_profile 中的全部内容:
# Tell ls to be colourful
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
# Tell grep to highlight matches
export GREP_OPTIONS='--color=auto'