Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I write Javascript, I use semi-colons. However when I write in webstorm/phpstorm, it auto completes braces and brackets, but doesn't auto-add a semicolon. Yes I know that isn't required per the standards, blah blah, but that's the way that I code -- and I'm not alone, many people code this way...

Example:

var data = $.ajax({});

Normally, webstorm/phpstorm will do this, and leave the cursor inside the curly braces:

var data = $.ajax({})

All in the world that I want is to not have to add the semicolon manually and have it just auto-complete as I noted in my first example.

Any ideas?

share|improve this question

1 Answer

up vote 7 down vote accepted

There is no way to insert it automatically, you need to use the Complete Statement action (Ctrl+Shift+Enter).

You also need to check that Use semicolon to terminate statements option is enabled in Settings | Code Style | JavaScript | Other tab.

share|improve this answer
Yeah, that's basically what I've found. Its frustrating because Its almost easier to turn off auto-complete and just keep typing rather then move my hand over to the arrow keys and navigate around to add the semi-colon. :( – tvpmb Aug 6 '12 at 16:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.