Created
June 6, 2012 23:01
-
-
Save skoch/2885364 to your computer and use it in GitHub Desktop.
Sublime Text 2 Key Bindings
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
Show hidden characters
[ | |
{ "keys": ["ctrl+shift+d"], "command": "duplicate_line" }, | |
{ "keys": ["super+shift+o"], "command": "insert_snippet", "args": {"name": "Packages/ActionScript 3/Out.sublime-snippet"}}, | |
// { "keys": ["super+shift+o"], "command": "insert_snippet", "args": {"name": "Packages/JavaScript/console-log.sublime-snippet"}}, | |
// { "keys": ["super+shift+t"], "command": "insert_snippet", "args": {"name": "Packages/ActionScript 3/trace.sublime-snippet"}}, | |
{ "keys": ["super+shift+l"], "command": "insert_snippet", "args": {"contents": "console.log( '$SELECTION', $SELECTION );"}}, | |
{ "keys": ["super+shift+i"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse":false} }, | |
{ "keys": ["super+enter"], "command": "build" }, | |
{ "keys": ["super+t"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
{ "keys": ["super+shift+t"], "command": "show_overlay", "args": {"overlay": "goto", "text": "@"} }, | |
{ "keys": ["super+shift+r"], "command": "reopen_last_file" }, | |
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} }, | |
{ "keys": ["ctrl+s"], "command": "toggle_side_bar" }, | |
// CLIPBOARD MANAGER | |
{ "keys": ["super+x"], "command": "clipboard_manager_cut" }, | |
{ "keys": ["super+c"], "command": "clipboard_manager_copy" }, | |
{ "keys": ["super+v"], "command": "clipboard_manager_paste", "args": { "indent": true } }, | |
{ "keys": ["super+ctrl+v"], "command": "clipboard_manager_paste", "args": { "indent": false } }, | |
{ "keys": ["super+alt+v"], "command": "clipboard_manager_next_and_paste" }, | |
{ "keys": ["super+shift+v"], "command": "clipboard_manager_previous_and_paste" }, | |
{ "keys": ["super+pagedown"], "command": "clipboard_manager_next" }, | |
{ "keys": ["super+pageup"], "command": "clipboard_manager_previous" }, | |
{ "keys": ["super+alt+ctrl+v"], "command": "clipboard_manager_choose_and_paste" }, | |
{ "keys": ["ctrl+shift+n"], "command": "project_maker" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment