Last active
October 13, 2015 09:48
-
-
Save nirnaeth/9407744 to your computer and use it in GitHub Desktop.
Key Bindings ST3
This file contains hidden or 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": ["super+alt+ü"], "command": "indent" }, | |
| { "keys": ["super+alt+ö"], "command": "unindent" }, | |
| { "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} }, | |
| { "keys": ["ctrl+shift+<"], "command": "erb" }, | |
| { "keys": ["super+shift+r"], "command": "reveal_in_side_bar" }, | |
| { "keys": ["ctrl+l"], "command": "rails_latest_migration" }, | |
| // Toggle quotes | |
| { | |
| "keys": ["shift+alt+q"], | |
| "command": "bh_key", | |
| "args": | |
| { | |
| "lines" : true, | |
| "plugin": | |
| { | |
| "type": ["single_quote", "double_quote", "py_single_quote", "py_double_quote"], | |
| "command": "bh_modules.swapquotes" | |
| } | |
| } | |
| }, | |
| // Select text between brackets | |
| { | |
| "keys": ["ctrl+shift+s"], | |
| "command": "bh_key", | |
| "args": | |
| { | |
| "lines" : true, | |
| "plugin": | |
| { | |
| "type": ["__all__"], | |
| "command": "bh_modules.bracketselect" | |
| } | |
| } | |
| }, | |
| // Remove brackets | |
| { "keys": ["ctrl+shift+r"], "command": "bh_remove_brackets" }, | |
| { "keys": ["ctrl+i"], "command": "expand_tabs" }, | |
| // Open Console | |
| { "keys": ["ctrl+#"], "command": "show_panel", "args": {"panel": "console", "toggle": true} }, | |
| // Align | |
| { "keys": ["ctrl+a"], "command": "alignment" }, | |
| { "keys": ["shift+super+k"], "command": "toggle_side_bar" }, | |
| { "keys": ["alt+m"], "command": "markdown_preview", "args": {"target": "browser", "parser":"markdown"} } | |
| ] |
This file contains hidden or 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": ["super+shift+k"], "command": "toggle_side_bar" }, | |
| { "keys": ["super+shift++"], "command": "indent" }, | |
| { "keys": ["super+shift+è"], "command": "unindent" }, | |
| { "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} }, | |
| { "keys": ["ctrl+shift+<"], "command": "erb" }, | |
| { "keys": ["super+shift+r"], "command": "reveal_in_side_bar" }, | |
| { "keys": ["super+shift+l"], "command": "rails_latest_migration" }, | |
| // Toggle quotes | |
| { | |
| "keys": ["shift+alt+q"], | |
| "command": "bh_key", | |
| "args": | |
| { | |
| "lines" : true, | |
| "plugin": | |
| { | |
| "type": ["single_quote", "double_quote", "py_single_quote", "py_double_quote"], | |
| "command": "bh_modules.swapquotes" | |
| } | |
| } | |
| }, | |
| // Select text between brackets | |
| { | |
| "keys": ["ctrl+shift+s"], | |
| "command": "bh_key", | |
| "args": | |
| { | |
| "lines" : true, | |
| "plugin": | |
| { | |
| "type": ["__all__"], | |
| "command": "bh_modules.bracketselect" | |
| } | |
| } | |
| }, | |
| // Remove brackets | |
| { "keys": ["ctrl+shift+r"], "command": "bh_remove_brackets" }, | |
| { "keys": ["ctrl+i"], "command": "reindent" }, | |
| // Open Console | |
| { "keys": ["ctrl+#"], "command": "show_panel", "args": {"panel": "console", "toggle": true} }, | |
| // Align | |
| { "keys": ["ctrl+a"], "command": "alignment" } | |
| ] |
This file contains hidden or 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
| // User settings for plugin | |
| { | |
| "resize_delta_default": 0.5 | |
| } | |
| // Key bindings | |
| { "keys": ["super+r"], "command": "resize_active_group", "args" : { "direction" : "left" } }, | |
| { "keys": ["super+l"], "command": "resize_active_group", "args" : { "direction" : "right" } }, | |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Plugins:
Optionals