Using Sublime Text 3, I love the feature that correspond to this :
// Controls auto pairing of quotes, brackets etc
"auto_match_enabled": true
in Preferences.
The problem is, when I have something like this :
var_dump('Final link : '.$type);
and I want something like this :
var_dump('Final link : '.($type?$type:'false');
I have to close my right parenthesis BUT it just write OVER the existing one and I have to do it two times so my caret is AFTER the existing right parenthesis.
I want to keep the "auto pairing" feature but not this one and I can't find anything about it, is it possible ?