[ { "keys": ["super+d"], "command": "duplicate_line" }, { "keys": ["super+y"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} }, { "keys": ["super+v"], "command": "paste_and_indent" }, { "keys": ["super+shift+v"], "command": "paste" }, { "keys": ["f3"], "command": "find_next" }, // Wrap with quotes and brackets without autopairing (auto_match_enabled=false) { "keys": ["\""], "command": "insert_snippet", "args": {"contents": "\"${0:$SELECTION}\""}, "context": [ { "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true } ] }, { "keys": ["'"], "command": "insert_snippet", "args": {"contents": "'${0:$SELECTION}'"}, "context": [ { "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true } ] }, { "keys": ["("], "command": "insert_snippet", "args": {"contents": "(${0:$SELECTION})"}, "context": [ { "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true } ] }, { "keys": ["["], "command": "insert_snippet", "args": {"contents": "[${0:$SELECTION}]"}, "context": [ { "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true } ] }, { "keys": ["{"], "command": "insert_snippet", "args": {"contents": "{${0:$SELECTION}}"}, "context": [ { "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true } ] } ]