bug: code assistant does not work after semicolon in string or comment

Worker

Member³
In the following situations I am unable to open the code assistant (F6) if the cursor is placed behind the second or third comma:

Code:
REPLACE(
	srcstr => 'x',
	oldsub => 'y;y',
	newsub => 'z' );

Code:
REPLACE(
	srcstr => 'x', -- x;x
	oldsub => 'y',
	newsub => 'z' );

 
Back
Top