标签: vim
如何将文件的当前filetype变为变量?
filetype
我基本上尝试设置密钥以在html和php文件类型之间切换。
html
php
答案 0 :(得分:3)
使用&filetype,就像在这个简单的函数中一样。
&filetype
function ToggleFT() if &filetype == 'html' set filetype=php elseif &filetype == 'php' set ft=html endif endfunction