所以在GVIM中我将颜色方案改为
desert
但我从未理解如何找到这一行
:colorscheme desert
所以我可以把它放在
中/root/.vimrc
文件。
我在哪里可以找到“:colorscheme desert
”?
答案 0 :(得分:1)
你可以阅读帮助(它很长很详细)
:h
打开vim的主要帮助。在开始使用时,您将看到以下内容。您可能需要向下滚动一下(使用 Control + f 向下翻页)
usr_toc.txt Table Of Contents
Getting Started
usr_01.txt About the manuals
usr_02.txt The first steps in Vim
usr_03.txt Moving around
usr_04.txt Making small changes
usr_05.txt Set your settings
usr_06.txt Using syntax highlighting
usr_07.txt Editing more than one file
usr_08.txt Splitting windows
usr_09.txt Using the GUI
usr_10.txt Making big changes
usr_11.txt Recovering from a crash
usr_12.txt Clever tricks
似乎usr_06.txt
与语法突出显示有关,因此可能值得一读。因此,当光标位于其上时,键入:h usr_06.txt
或<c-]>
( Control + ] )即可跳转到该文件。
一旦你在那里,你可以再次查看目录。
06.1 Switching it on
06.2 No or wrong colors?
06.3 Different colors
06.4 With colors or without colors
06.5 Printing with colors
06.6 Further reading
不同的颜色似乎是你想要的。所以输入:h 06.3
(或<c-]>
),第一段谈到改变colorscheme。
控制 + ] 跳转到标记,并在:h tagsrch.txt
中进行讨论(并在您打开时立即“跳转到某个主题”行{ {1}})
答案 1 :(得分:0)
在debian linux上,它是vim-runtime
包的一部分,位于/usr/share/vim/vim73/colors/desert.vim
。您可以列出此目录的内容以获取更多选项。我不认为他们在vim中有硬编码的配色方案,所以vim帮助不会为你列出它们。
我想像大多数其他vim插件一样,自定义配色方案也可以放在~/.vim
目录中。
答案 2 :(得分:0)
帮助有自动完成功能。
因此,您可以键入:help color
,然后键入 Ctrl + d 。你不必找到蝙蝠的好进入权,但它应该让你走上正确的轨道。它会向您显示colorscheme
选项。
另一种方法是使用:helpgrep
。 :helpgrep color
应该会为您提供一个包含字符串color
的帮助文件列表。