Skip to content

Commit

Permalink
prevent ' and [ from inserting extra characters.
Browse files Browse the repository at this point in the history
  • Loading branch information
ksherlock committed Sep 26, 2017
1 parent 4537c34 commit db7348e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Preferences/Default.sublime-keymap
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[
// Disable auto-pair for '
{ "keys": ["'"], "command": "insert_snippet", "args": {"contents": "'"}, "context":
[{ "key": "selector", "operator": "equal", "operand": "source.mumps" }]
},
// Disable auto-pair for [
{ "keys": ["["], "command": "insert_snippet", "args": {"contents": "["}, "context":
[{ "key": "selector", "operator": "equal", "operand": "source.mumps" }]
}
]

0 comments on commit db7348e

Please sign in to comment.