One more fix

This commit is contained in:
Alexandros Naskos 2020-05-21 21:02:12 +03:00
parent 2eab5e036d
commit ccc923e2f0

View File

@ -291,7 +291,7 @@ fn identifierFromPosition(pos_index: usize, handle: DocumentStore.Handle) []cons
{}
var end_idx = pos_index;
while (end_idx < handle.document.text.len and
while (end_idx < handle.document.text.len - 1 and
(std.ascii.isAlNum(handle.document.text[end_idx]) or handle.document.text[end_idx] == '_')) : (end_idx += 1)
{}