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 cd7a230 commit b4093d1Copy full SHA for b4093d1
plugins_/syntaxtest_dev.py
@@ -296,7 +296,9 @@ def run(self, edit):
296
297
# find the next non-whitespace char on the line being tested above
298
if skip_whitespace:
299
- for pos in range(details.line_region.begin() + next_col, details.line_region.end()):
+ line_region = listener.get_details_of_line_being_tested()[1]
300
+ pos = line_region.begin() + next_col
301
+ for pos in range(pos, line_region.end()):
302
if view.substr(pos).strip() != '':
303
break
304
next_col = view.rowcol(pos)[1]
0 commit comments