Single character parameter can not be highlighted when placed after an opening parenthesis in method

Claus Pedersen

Member³
I have the following code:
Code:
PROCEDURE test (a NUMBER,
                b NUMBER) IS
BEGIN
  IF a=b THEN
    NULL;
  END IF;
END;

My problem is that parameters named as a single character can not be highlighted when prefixed by an opening parenthesis, like "a" in the example above. "b" can be highlighted without problems. Because of the modified parenthesis highlight method introduced in version 10, the parentheses are highlighted whether the cursor is before or after the opening parenthesis. Therefore "a" can not be highlighted, whereas "b" can (when the cursor is positioned just before "b"). When you add a space before "a", it can be highlighted.

Please correct this behavior.
 
Back
Top