- Code: Select all
pg3b.set(true)
The cursor stops at the beginning and before and after each parenthesis. I'd like it to also stop before and after the dot.
Moderator: robert
pg3b.set(true)
controller.get(
When I press ctrl+arrow to jump by word, is it possible to make my RSyntaxTextArea stop at a period? Eg:
- Code: Select all
Select all
pg3b.set(true)
The cursor stops at the beginning and before and after each parenthesis. I'd like it to also stop before and after the dot.
As soon as I type the open parenthesis, I get the autocompletion for the get function (which is totally unrelated to the controller's get method!). Is it possible to not automatically popup the autocompletion box if it looks like a method call rather than a function call (ie, it is after a dot)?
@Override
protected boolean isValidChar(char ch) {
return super.isValidChar(ch) || ch=='.';
}
Is font anti aliasing turned off for the RSTA? Can it be turned on? At some font sizes I see some anomalies that bug me.
textArea.setTextAntiAliasHint("VALUE_TEXT_ANTIALIAS_ON");
Users browsing this forum: No registered users and 1 guest