In the Netbeans (v 7.01) code complete options I have disabled:
All Languages -> Insert Closing Brackets Automatically
Html -> Equals sign (=) Keypress After Attribute Name Autocompletes Quote Set
Html -> Quote mark (") Keypress After Attribute Name Autocompletes Closing Quote
and yet if I type out the following html line:
<div class = "">
Netbeans corrects this to:
<div class = """>
So in other words, the IDE adds in an extra quote mark. The problem doesn't seem to happen in PHP scripts, only HTML. But I'm finding it extremely infuriating and I can't figure out how to stop it!
Anyone have any idea what's going on?