Claus Pedersen
Member³
I have the following code:
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.
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.