I like electric pairing for things like...
someJavascript(function() { });
Where it automatically pairs { with {) etc.
However, it infuriates me when I have
someFunction();
and I want to turn that into
wrapped(someFunction());
It comes out as:
wrapped()someFunction();
so I have to break my rhythm and delete the )
.