我想将Vim autocmd
应用于所有源代码文件 - 例如
autocmd FileType <code> :set tw=80
我可以在没有详尽列出所有不同扩展名的情况下执行此操作,例如
autocmd FileType ruby, python, python3, java ... :set tw=80
最好的方法是什么?是否存在Vim在任何源文件中识别的一般FileType
或Syntax
?
答案 0 :(得分:0)
您可以使用*
来匹配所有事件。在你的情况下:
:autocmd FileType * command
请参阅:help autocmd-patterns
和:help file-pattern
。