使 JavaSciptLint 更可配置

发布于 2024-08-23 19:48:19 字数 544 浏览 5 评论 0原文

我正在使用 mvim 和插件 JavaScriptLint。效果很好。

然而,有时我使用 jQuery 或其他 JavaScript 库,每次保存文件时,我都会收到大量警告,并且光标会移动到第一个警告。

我想要的是某种方法来打开或关闭此功能。像

:set enableJavaScriptLint
:set disableJavaSCriptLint

我的 vimrc 文件在这里插件在这里 。请注意,在第 14 行,插件会自动检测是否存在 jsl 命令,然后启用它。我想我需要编写一些函数来启用或禁用该调用。

任何帮助表示赞赏。

I am using mvim with plugin JavaScriptLint. It works great.

However sometimes I work on jQuery or other JavaScript libraries and every single time I save the file, I get tons of warning and cursor moves to the very first warning.

What I would like to have is some way to turn this feature On or off. Something like

:set enableJavaScriptLint
:set disableJavaSCriptLint

My vimrc file is here. And the plugin is here . Notce at line number 14 the plugin autodetects if jsl command is present then it gets enabled. I guess I need to write some function to enable or disable that call.

Any help is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

抽个烟儿 2024-08-30 19:48:19

不完全是你的想法,但是
您可以删除自动命令并手动调用该函数,或者用快捷键替换它,如下所示:

map:call JavascriptLint()

然后你必须记住首先保存文件,并且只在 *.js 文件上调用它...

或者,你可以修复所有警告...它也会停止抱怨;-)

Not exactly what you have in mind, but
you can remove the autocommand and call the function manually or replace it with a shortcutkey maybe like this:

map <F11> :call JavascriptLint()

you then have to remember to first save the file, and only call it on *.js files though...

Or, you could fix all warnings...it'll stop complaining too ;-)

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