Javascript syntax highlighting in vim - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T05:11:47Zhttp://stackoverflow.com/feeds/question/58825http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/58825/javascript-syntax-highlighting-in-vim6Javascript syntax highlighting in vimSteve M2008-09-12T12:32:33Z2008-09-12T17:40:20Z
<p>Has anyone else found VIM's syntax highlighting of Javascript sub-optimal? I'm finding that sometimes I need to scroll around in order to get the syntax highlighting adjusted, as sometimes it mysteriously drops all highlighting.</p>
<p>Are there any work-arounds or ways to fix this? I'm using vim 7.1.</p>
http://stackoverflow.com/questions/58825/javascript-syntax-highlighting-in-vim/58840#588400Answer by D4V360 for Javascript syntax highlighting in vimD4V3602008-09-12T12:42:16Z2008-09-12T12:42:16Z<p>Closing the file and reopening it usually helps;
But i'm interested in a real solution as well!</p>
http://stackoverflow.com/questions/58825/javascript-syntax-highlighting-in-vim/58953#589534Answer by Rob Wells for Javascript syntax highlighting in vimRob Wells2008-09-12T13:28:16Z2008-09-12T13:45:30Z<p>You might like to try this <a href="http://www.vim.org/scripts/script.php?script_id=1491" rel="nofollow">improved Javascript syntax highlighter</a> rather than the one that ships with VIMRUNTIME.</p>
http://stackoverflow.com/questions/58825/javascript-syntax-highlighting-in-vim/59211#592111Answer by Thomas Kammeyer for Javascript syntax highlighting in vimThomas Kammeyer2008-09-12T15:04:26Z2008-09-12T15:04:26Z<p>Syntax coloring synchronization probably needs adjustment. I've found in certain contexts that I need to change it.</p>
<p>Syntax synchronization (":help syn-sync") controls how vim keeps track of refreshes its parse of the code for coloring, so that it can start drawing anywhere in the file.</p>
<p>The defaults don't always work for me, so sometimes I find myself issuing</p>
<pre><code>:syn sync fromstart
</code></pre>
<p>I suggest reading through the documentation under</p>
<pre><code>:help syn sync
</code></pre>
<p>or just check</p>
<pre><code>:help syntax
</code></pre>
<p>and find the section on synchronization.</p>
<p>to make an informed decision among the four available basic options.
I maintain mappings to function keys to switch between "fromstart" and "ccomment" modes and for just clearing the sync settings.</p>
http://stackoverflow.com/questions/58825/javascript-syntax-highlighting-in-vim/59593#595932Answer by AndrewJFord for Javascript syntax highlighting in vimAndrewJFord2008-09-12T17:40:20Z2008-09-12T17:40:20Z<p>For a quick and dirty fix, sometimes I just scroll up and down and the highlighting readjusts. Ctrl-L for a screen redraw can also fix it.</p>