Created
September 26, 2022 17:20
-
-
Save Kambaa/384e41343cf1d38e48b344b4a8d414b0 to your computer and use it in GitHub Desktop.
sublime text key bindings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": ["alt+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys": ["ctrl+d"], "command": "duplicate_line" }, | |
{ "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+space+down"], "command": "select_lines", "args": {"forward": true} }, | |
{ "keys": ["ctrl+space+up"], "command": "select_lines", "args": {"forward": false}}, | |
{ "keys": ["shift+alt+f"], "command": "reindent", "args": {"single_line": false} } , | |
{ "keys": ["shift+alt+f"], "command": "pretty_json" , | |
"context": [ | |
{ | |
"key": "selector", | |
"operator": "equal", | |
"operand": "source.json" | |
} | |
] | |
} //Pretty JSON addon https://packagecontrol.io/packages/Pretty%20JSON | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment