Skip to content

Instantly share code, notes, and snippets.

@Kambaa
Created December 24, 2024 17:59
Show Gist options
  • Save Kambaa/7a742fc1ee5510e64801877b024c59c4 to your computer and use it in GitHub Desktop.
Save Kambaa/7a742fc1ee5510e64801877b024c59c4 to your computer and use it in GitHub Desktop.
Sublime Key configs
[
{ "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*/
},
{ "keys": ["alt+shift+up"], "command": "swap_line_up" },
{ "keys": ["alt+shift+down"], "command": "swap_line_down" },
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment