Skip to content

Commit 790b700

Browse files
committed
Skip whitespace by default
1 parent a01e7d9 commit 790b700

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Package/PackageDev.sublime-settings

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
// "DRAW_NO_OUTLINE", "DRAW_SOLID_UNDERLINE", "DRAW_STIPPLED_UNDERLINE",
5252
// "DRAW_SQUIGGLY_UNDERLINE", "HIDDEN", "PERSISTENT"
5353
"syntax_test.highlight_styles": ["DRAW_NO_FILL"],
54-
54+
5555
// Whether to skip whitespace after the previous line's test assertions when
5656
// pressing the Tab key on a new syntax test line
57-
"syntax_test.skip_whitespace": false,
57+
"syntax_test.skip_whitespace": true,
5858
}

plugins_/syntaxtest_dev.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def run(self, edit):
284284
# find the last test assertion column on the previous line
285285
details = listener.get_details_of_test_assertion_line(details.line_region.begin() - 1)
286286
next_col = None
287-
skip_whitespace = get_setting('syntax_test.skip_whitespace', False)
287+
skip_whitespace = get_setting('syntax_test.skip_whitespace', True)
288288
if details.assertion_colrange:
289289
next_col = details.assertion_colrange[1]
290290
else:

0 commit comments

Comments
 (0)