Skip to content

Commit 5262743

Browse files
committed
Fix bug in how raw string auto-complete worked.
1 parent 727b684 commit 5262743

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Default.sublime-keymap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
// r#" will expand to r#""#
4141
// Additional # characters will be duplicated on both sides.
42-
{ "keys": ["\""], "command": "insert_snippet", "args": {"contents": "\"$0\"${TM_CURRENT_WORD/[^#]/$1/}"}, "context":
42+
{ "keys": ["\""], "command": "insert_snippet", "args": {"contents": "\"$0\"${TM_CURRENT_WORD/[^#]+/$1/}"}, "context":
4343
[
4444
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
4545
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },

0 commit comments

Comments
 (0)