I'm new to JS & Vim. Which plugins would help me to write Javascript code?
feedback
|
Syntax Checking / LintingThere is a very easy way to integrate JSLint or the community-driven jshint.com (which is much better IMO) with Vim using the Syntastic Vim plugin. See my other post for more info. Source-Code browsing / Tag-listThere's also a very neat way to add tag-listing using Mozilla's DoctorJS (formerly jsctags), which is also used in Cloud9 IDE's Ace online editor.
| |||||||||||||
feedback
|
|
snipMate emulates TextMate's ⇥ insertion system and comes with a bunch of useful JS snippets (among others) by default. It's extremely easy to add your own. javaScriptLint allows you to validate your code against jsl. Also you can find a variety of JavaScript syntax files on vim.org. Try them and see which one works best for you and your coding style. The native omnicomplete (ctrlx-ctrlo) works very well for me. You can make it more dynamic with autoComplPop, but it can be annoying sometimes. edit, in response to tarek11011's comment: acp doesn't work for JavaScript by default, you have to tweak it a little. Here is how I did it (dirty hack, I'm still a Vim noob): In vim-autocomplpop/plugin/acp.vim I've added
A little below, there is a series of code blocks that look like that :
I've duplicated this one and edited it a little bit to look like that:
and did the same for actionscript and php. If you want to edit JS/CSS within a HTML document you can do :set ft=html.css.javascript in Vim's command line to make ctrlx-ctrlo work as expected on method/properties names in JS blocks and properties/values in CSS blocks. However this approach has its drawbacks, too (weird indentation…). | |||||||||||
feedback
|
|
I only use one js specific vim plugin - jslint.vim - https://github.com/hallettj/jslint.vim which validates your code with jslints rules and gives you syntax errors as well. | |||||
feedback
|
|
To fix indentation and autoformatting (Ctrl =): JavaScript Indent To set indentation width, add
| |||
|
feedback
|