从函数引用文件类型
我正在尝试编写一个作用于任何文件类型的函数(因此不是特定的 ftplugin),该函数根据文件类型具有不同的行为。例如,
if (filetype=='objc')
"do something
elseif (filetype='cpp')
"do something else
endif
我通读了文件类型文档,但似乎没有任何内容引用此内容。建议?
I'm trying to write a function that acts on any filetype (thus is not a particular ftplugin), that has divergent behavior based upon what the filetype is. e.g.
if (filetype=='objc')
"do something
elseif (filetype='cpp')
"do something else
endif
I read through the filetype docs, but nothing seems to reference this. Advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试访问选项值:
Try accessing the option value:
您可以使用
&
来访问值:等等。
You can use
&
to access the value:etc.