omadawn / njord

Java iRule Editor
2 stars 1 forks source link

Words with :: in them aren't autocompleting. #84

Closed omadawn closed 12 years ago

omadawn commented 12 years ago

Apparently I need to extend the default completion provider and override the isValidChar method like so

protected boolean isValidChar(char ch) { return ch==':' || super.isValidChar(ch); }

See this thread here http://fifesoft.com/forum/viewtopic.php?f=10&t=268&start=50

omadawn commented 12 years ago

Fixed!