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.
我正在寻找可以添加到我的 .vimrc 中的东西,它会告诉 MacVim 始终对 TXT 文件使用 Markdown 语法突出显示。
目前,我可以手动执行此操作,set filetype=markdown但每次打开文件时都必须这样做。
set filetype=markdown
您可以使用以下命令自动设置特定文件扩展名的文件类型autocmd:
autocmd
autocmd BufRead,BufNewFile *.txt,*.TXT set filetype=markdown
将此行添加到您的.vimrc.
.vimrc
:help autocmd在 vim 中输入以获取更多详细信息;另见::help autocmd-group。另见::help filetype。
:help autocmd
:help autocmd-group
:help filetype