summary refs log tree commit diff stats
path: root/nimsuggest/tests/tsetter_highlight.nim
Commit message (Collapse)AuthorAgeFilesLines
* compiler/[msgs, suggest]: improve highlighter accuracy (#10496)alaviss2019-02-071-0/+10
Previously the compiler would generate suggestions based on the symbol identifier length, but that might not reflect the actual representation of it within the actual source code. This commit implements a simple source scanner for the suggest module to address the problem outlined above. Fixes nim-lang/nimsuggest#24