Skip to content

Commit

Permalink
Fix bug in how raw string auto-complete worked.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Jul 15, 2019
1 parent 727b684 commit 5262743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Default.sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
// r#" will expand to r#""#
// Additional # characters will be duplicated on both sides.
{ "keys": ["\""], "command": "insert_snippet", "args": {"contents": "\"$0\"${TM_CURRENT_WORD/[^#]/$1/}"}, "context":
{ "keys": ["\""], "command": "insert_snippet", "args": {"contents": "\"$0\"${TM_CURRENT_WORD/[^#]+/$1/}"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
Expand Down

0 comments on commit 5262743

Please sign in to comment.