Javascript syntax highlighting in vim - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T05:11:47Z http://stackoverflow.com/feeds/question/58825 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/58825/javascript-syntax-highlighting-in-vim 6 Javascript syntax highlighting in vim Steve M 2008-09-12T12:32:33Z 2008-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#58840 0 Answer by D4V360 for Javascript syntax highlighting in vim D4V360 2008-09-12T12:42:16Z 2008-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#58953 4 Answer by Rob Wells for Javascript syntax highlighting in vim Rob Wells 2008-09-12T13:28:16Z 2008-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#59211 1 Answer by Thomas Kammeyer for Javascript syntax highlighting in vim Thomas Kammeyer 2008-09-12T15:04:26Z 2008-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#59593 2 Answer by AndrewJFord for Javascript syntax highlighting in vim AndrewJFord 2008-09-12T17:40:20Z 2008-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>