Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过加入单词来完成关键字-。.post-header默认的 Vim就是一个字看不懂。
-
.post-header
但我想让vim认出.post-header是一个字。如果是这样,我认为关键字完成是在 word 加入时起作用的-。
请参阅:help 'iskeyword':-不是默认列表的一部分,因此您必须自己添加:
:help 'iskeyword'
:set iskeyword+=-
如果您只希望它用于 CSS,请将下面的行添加到~/.vim/after/ftplugin/css.vim:
~/.vim/after/ftplugin/css.vim
setlocal iskeyword+=-
如果该文件不存在,您必须创建该文件。