fixes nimsuggest bug #45

This commit is contained in:
Araq
2017-03-08 13:21:40 +01:00
parent 0596c11775
commit 0f63c101e4

View File

@@ -1022,7 +1022,7 @@ proc rawGetTok*(L: var TLexer, tok: var TToken) =
inc(L.bufpos)
of '.':
when defined(nimsuggest):
if L.fileIdx == gTrackPos.fileIndex and tok.col+1 == gTrackPos.col and
if L.fileIdx == gTrackPos.fileIndex and tok.col == gTrackPos.col and
tok.line == gTrackPos.line and gIdeCmd == ideSug:
tok.tokType = tkDot
inc(L.bufpos)