2013-04-15 156 views
1

我曾尝试下载许多R语法突出显示插件无济于事。没有任何效果......但是,当我将sourthernlights.vim放入~/.vim/plugin时,此新颜色配置文件对于我在Vim中打开的所有文件都有效。Vim在Mac OS X Mountain Lion上突出显示R语法

文件中*.R*.r默认iterm2的颜色配置文件(或southernlights.vim如果我没有更改文件类型)

我已经检查

:set ft? 

:filetype 
结束

我的.vimrc有

syntax on 
filetype plugin on 

任何建议将是伟大的!

谢谢了, BFB

:version 

VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Mar 26 2013 14:04:37) 
MacOS X (unix) version 
Compiled by kevin [email protected] 
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/local/share/vim" 
Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H -DMACOS_X_UNIX -no-cpp-precomp 
-g -O2 -D_FORTIFY_SOURCE=1 
Linking: gcc -o vim  -lm -lncurses -framework Cocoa 

回答

0

Colorschemes必须安装在~/.vim/colors

从你的问题,不清楚你是否有颜色问题或使用R语法突出显示问题。

此外,在没有Python/Ruby支持或任何补丁应用的情况下,在Mac OS X上构建自己的Vim有什么意义? MacVim是的路要走。

+0

嗯,语法突出显示和颜色方案有什么区别?而且,无论如何,我还是用Python和Ruby编写的;) – bfb

+0

明白了,我现在看到了区别。感谢更新。我毫不犹豫地转向MacVim。 MacVim可以在终端中运行吗?我确实喜欢iterm2的灵活性,并且喜欢将我的文本编辑保存在其中。 – bfb

+0

语法高亮显示是将特定颜色归因于语言的特定部分时所得到的结果。 Vim使用包含R语法定义的语法文件*和* colorscheme将特定颜色归属于在该语法中定义的符号。 – romainl

相关问题