使 JavaSciptLint 更可配置
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不完全是你的想法,但是
您可以删除自动命令并手动调用该函数,或者用快捷键替换它,如下所示:
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 ;-)