If this feature is turned on, it automatically adds an extra " ' ] or } when I type an opening one.  I like that; however, what I don't like is that if I type something like:
echo 'This is a string that will have ' . $this_var . ' printed in it.';
you can't continue typing the quote, or bracket, and the editor realize that you want to close the current one, rather than start a new one.  So PhpED gives me this:
echo 'This is a string that will have '' . $this_var . ' printed in it.'';
Is there a way to fix this by an option I'm not seeing (or don't realize exists)?  Thanks for the help.
UPDATE
Build 5031 does fix 
some of the issues; however, if you type something like:
 	
	| $var['array_key'] = array('some-key'=>(result_of_Function('some-value'))); | 	
 
it comes out like this....
 	
	| $var['array_key'] = array('some-key'=>(result_of_Function('some-value')));)))] | 	
 
So it properly skips quotes, but not braces 

  So it's half-way fixed...
UPDATE II
Still b0rk3d in 5219.... downloading 5220 right now.
UPDATE III
Still b0rk3d in 5220... quite annoying not to be able to use it.