mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
Merge pull request #7730 from minrk/complete-v4-empty
handle zero-length match in v4 completions
This commit is contained in:
commit
9cc7c2bf02
@ -183,7 +183,9 @@ define([
|
|||||||
// interpret end=null as current position,
|
// interpret end=null as current position,
|
||||||
// and negative start relative to that
|
// and negative start relative to that
|
||||||
end = utils.to_absolute_cursor_pos(this.editor, cur);
|
end = utils.to_absolute_cursor_pos(this.editor, cur);
|
||||||
if (start < 0) {
|
if (start === null) {
|
||||||
|
start = end;
|
||||||
|
} else if (start < 0) {
|
||||||
start = end + start;
|
start = end + start;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user