We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 004eb12 commit e1a135dCopy full SHA for e1a135d
1 file changed
plugins/syntaxtest_dev.py
@@ -614,9 +614,10 @@ def run(self, edit):
614
615
for region in reversed(view.sel()):
616
line = view.line(region.b)
617
+ full_line = view.full_line(region.b)
618
619
forest = ScopeTreeNode.build_forest(
- view.extract_tokens_with_scopes(line),
620
+ view.extract_tokens_with_scopes(full_line),
621
trim_suffix=not suggest_suffix,
622
)
623
0 commit comments