Skip to content

Instantly share code, notes, and snippets.

@hooke
Last active August 29, 2015 14:26
Show Gist options
  • Save hooke/cd52a602c94f97ce750d to your computer and use it in GitHub Desktop.
Save hooke/cd52a602c94f97ce750d to your computer and use it in GitHub Desktop.
Example of vim-javascript-syntax comment highlighting problem (issue https://github.com/jelera/vim-javascript-syntax/issues/56)
/*jshint node:true*/
var i=1;
var j=0;
console.log('start');
do {
console.log(i*j);
//i++;
//} while (i<=5);
j++;
} while (j<=2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment