Skip to content
Snippets Groups Projects
Commit db380aa2 authored by Tomas Stupka's avatar Tomas Stupka
Browse files

[GR-6417] Code completion: unhandled exception in JLine.

PullRequest: fastr/1192
parents f73d4d5b 567c6765
No related branches found
No related tags found
No related merge requests found
......@@ -111,14 +111,10 @@ public class JLineConsoleCompleter implements Completer {
start = lastIdxOf(buffer, opt, "function.suffix", start, cursor);
}
// are we just after a ',' or ' '
if (cursor > 0 && cursor <= buffer.length() && (buffer.charAt(cursor - 1) == ',' || buffer.charAt(cursor - 1) == ' ')) {
return cursor;
}
// is there any next closest ',' or ' '?
int idx = cursor >= buffer.length() ? buffer.length() - 1 : cursor;
while (idx >= start && (buffer.charAt(idx) != ',' && buffer.charAt(idx) != ' ')) {
// is there any preceeding ',' or ' ' - lets start from there
String precBuffer = buffer.length() > cursor ? buffer.substring(0, cursor) : buffer;
int idx = cursor >= precBuffer.length() ? precBuffer.length() - 1 : cursor - 1;
while (idx >= start && precBuffer.charAt(idx) != ',' && precBuffer.charAt(idx) != ' ') {
--idx;
}
if (idx > -1) {
......
......@@ -92,6 +92,11 @@ public class TestJLineConsoleCompleter {
assertCompl("strtoi", 4, "strtoi", "strtrim");
assertCompl("strto ", 6);
assertCompl("strto,", 6);
assertCompl("strt blabla", 4, "strtoi", "strtrim");
assertCompl("strt blabla", 4, "strtoi", "strtrim");
assertCompl("strt,,blabla", 4, "strtoi", "strtrim");
assertCompl("strt, blabla", 4, "strtoi", "strtrim");
assertCompl("strto blabla", 4, "strtoi", "strtrim");
assertCompl("blabla,strt", 11, "strtoi", "strtrim");
assertCompl("blabla strt", 11, "strtoi", "strtrim");
assertCompl("blabla,,strt", 12, "strtoi", "strtrim");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment