Skip to content

Instantly share code, notes, and snippets.

@BubuInc
Last active May 12, 2016 21:32
Show Gist options
  • Save BubuInc/092f76571d56ea0dd11befa24dec3c08 to your computer and use it in GitHub Desktop.
Save BubuInc/092f76571d56ea0dd11befa24dec3c08 to your computer and use it in GitHub Desktop.
Sublime Text 3 user keymap
[
{ "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["f12"], "command": "reindent"},
{ "keys": ["alt+d"], "command": "goto_definition" },
{ "keys": ["shift+delete"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+1"], "command": "fold_by_level", "args": {"level": 1} },
{ "keys": ["ctrl+2"], "command": "fold_by_level", "args": {"level": 2} },
{ "keys": ["ctrl+3"], "command": "fold_by_level", "args": {"level": 3} },
{ "keys": ["ctrl+4"], "command": "fold_by_level", "args": {"level": 4} },
{ "keys": ["ctrl+5"], "command": "fold_by_level", "args": {"level": 5} },
{ "keys": ["ctrl+6"], "command": "fold_by_level", "args": {"level": 6} },
{ "keys": ["ctrl+0"], "command": "unfold_all" },
{ "keys": ["ctrl+["], "command": "fold" },
{ "keys": ["ctrl+]"], "command": "unfold" },
{ "keys": ["ctrl+b"], "command": "toggle_side_bar" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment