Created
August 27, 2014 16:13
-
-
Save rodvlopes/06a74b33e5037cc1f0c7 to your computer and use it in GitHub Desktop.
SublimeText 3 Key binds
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": ["ctrl+alt+d"], "command": "find_under_expand" }, | |
{ "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
{ "keys": ["f3"], "command": "find_under" }, | |
{ "keys": ["shift+f3"], "command": "find_under_prev" }, | |
{ "keys": ["f9"], "command": "toggle_side_bar" }, | |
{ "keys": ["ctrl+up"], "command": "scroll_lines", "args": {"amount": 5.0 } }, | |
{ "keys": ["ctrl+down"], "command": "scroll_lines", "args": {"amount": -5.0 } }, | |
{ "keys": ["ctrl+alt+d"], "command": "find_under_expand" }, | |
{ "keys": ["ctrl+k", "ctrl+d"], "command": "find_under_expand_skip" }, | |
{ "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} }, | |
{ "keys": ["alt+up"], "command": "swap_line_up" }, | |
{ "keys": ["alt+down"], "command": "swap_line_down" }, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment