Whenever I type a: (colon), it moves all the text in the current line to the beginning of the line, ignoring spaces and tabs.
So, if I type
var combo = new Ext.form.ComboBox({ typeAhead
Then I type a colon in which it moves the text, and now it looks like
var combo = new Ext.form.ComboBox({ typeAhead: //text is no longer indented })
Is this a javascript file that might cause the problem?
How can I stop text wrapping at the beginning of a line when typing a colon?
source share