Hi,
I need to Highlight multiple lines in a text editor.
Eg:
IMPORTS
A,
B,
c;
IToken oid = new Token(new TextAttribute(color_oid, null, SWT.BOLD));
rules[i++] = new MultiLineRule("IMPORTS ", ";", oid);
By this way I am not able to highlight the multiple lines. But when I give one extra space before IMPORTS word, it is highlighting.
IMPORTS
A,
B,
c;
rules[i++] = new MultiLineRule(" IMPORTS",";", oid);
My requirement is no extra space before IMPORTS word.
Please let me know how to handle this one.
Thanks,