Skip to content

Instantly share code, notes, and snippets.

@bcrescimanno
Created March 12, 2013 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bcrescimanno/5144215 to your computer and use it in GitHub Desktop.
Save bcrescimanno/5144215 to your computer and use it in GitHub Desktop.
Javascript tabbing errors
function testing () {
var test = 'something'
, testing
, someother
;
// Cursor at correct position
var something,
yes, // Had to manually tab this line over
test
;
// Cursor sticks out here.
var another,
andAnother; // Had to manually tab this line over
// Cursor sticks out here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment