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.
每当我创建.h文件时,航空公司都会将其解释为cpp文件(在文件类型部分中)。我该如何设置它c?
.h
cpp
c
我在网上找不到答案,也不知道在哪里更改 Airline 的源代码来做我想做的事。
文件类型由标准 Vim ftplugin 设置。更改默认值
let g:c_syntax_for_h = 1
查看:h c.vim更多选项。
:h c.vim
尝试将该行添加到 vimrc
au BufRead,BufNewFile *.h set filetype=c