Skip to content

Commit 34427bc

Browse files
committed
Fix double quote autoclosing issue with docstring quotes.
1 parent ed68ac4 commit 34427bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: settings/sublime/Default.sublime-keymap

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
66
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
77
{ "key": "following_text", "operator": "regex_contains", "operand": "^(?:\t| |\\)|]|\\}|>|$)", "match_all": true },
8-
{ "key": "preceding_text", "operator": "regex_contains", "operand": "(?:[bfruBFRU]|[^'[:alnum:]_])$", "match_all": true },
8+
{ "key": "preceding_text", "operator": "regex_contains", "operand": "(?:[bfruBFRU]|[^\"[:alnum:]_])$", "match_all": true },
99
{ "key": "eol_selector", "operator": "not_equal", "operand": "string.quoted.double - punctuation.definition.string.end", "match_all": true },
1010
{ "key": "eol_selector", "operator": "equal", "operand": "source.python", "match_all": true }
1111
]

0 commit comments

Comments
 (0)