When working with JS typing the start of a var name and hitting CTRL+SHIFT to ask for the autocomplete and hitting enter, the var does get its name, but all the white spaces from the end of the var name to the next code are deleted.
I can always reproduce it.
-create a new empty UTF-8 without BOM, save it as JS.
do something like:
Code: Select all
var testing = 'lol';
var othercode = null;
you get :
Code: Select all
var testing = 'lol';
testingvar othercode = null;
Code: Select all
var testing = 'lol';
test
var othercode = null;
Anyway, awesome tool, congratulations!