从函数引用文件类型

发布于 2024-12-05 17:43:08 字数 229 浏览 1 评论 0原文

我正在尝试编写一个作用于任何文件类型的函数(因此不是特定的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤檠 2024-12-12 17:43:08

尝试访问选项值:

if (&ft == 'objc')
   ...

Try accessing the option value:

if (&ft == 'objc')
   ...
柠檬心 2024-12-12 17:43:08

您可以使用 & 来访问值:

if ( &ft == 'cpp' )
    ...

等等。

You can use & to access the value:

if ( &ft == 'cpp' )
    ...

etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文