Last active
January 8, 2016 10:21
-
-
Save danyeah/1322d5cdbe574318c975 to your computer and use it in GitHub Desktop.
user.sublime-keymap
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": ["ctrl+shift+u"], "command": "sftp_upload_file" }, | |
| { "keys": ["pause"], "command": "sftp_cancel_upload" }, | |
| { "keys": ["f1"], "command": "show_panel", "args": {"panel": "console", "toggle": true} }, | |
| { "keys": ["ctrl+shift+r"], "command": "reindent" , "args": {"single_line": false}}, | |
| { "keys": ["ctrl+super+k"], "command": "toggle_comment", "args": { "block": true } }, | |
| { "keys": ["ctrl+alt+k"], "command": "insert_snippet", "args": {"name": "Packages/User/comment.sublime-snippet"} }, | |
| { "keys": ["shift+f3"], "command": "css_sorter" }, | |
| { "keys": ["ctrl+alt+f"], "command": "use_it" }, | |
| { "keys": ["alt+e"], "command": "insert_snippet", "args": {"contents": "<em>${0:$SELECTION}</em>" } }, | |
| { "keys": ["alt+b"], "command": "insert_snippet", "args": {"contents": "<strong>${0:$SELECTION}</strong>" } }, | |
| {"keys": ["ctrl+alt+l"], "command": "list_sass_variables" }, | |
| { | |
| "keys": ["ctrl+f8"], | |
| "command": "bh_key", | |
| "args": { | |
| "lines" : true, | |
| "plugin":{ | |
| "type": ["__all__"], | |
| "command": "bh_modules.bracketselect" | |
| } | |
| } | |
| }, | |
| { "keys": ["super+f2"], "command": "side_bar_rename" }, | |
| { "keys": ["super+f3"], "command": "side_bar_move" }, | |
| { "keys": ["super+f4"], "command": "side_bar_duplicate" }, | |
| { "keys": ["super+delete"], "command": "side_bar_delete" }, | |
| { "keys": ["ctrl+alt+v"], "command": "clipboard_manager_choose_and_paste" }, | |
| { "keys": ["ctrl+alt+t"], "command": "open_terminal_project_folder" }, | |
| { "keys": ["shift+enter"], "command": "run_macro_file", "args": {"file": "Packages/User/endOfLine.sublime-macro"} }, | |
| { "keys": ["super+enter"], "command": "run_macro_file", "args": {"file": "Packages/User/brackets.sublime-macro"} }, | |
| { "keys": ["f12"], "command": "side_bar_open_in_browser" , "args":{"paths":[], "type":"testing"} }, | |
| { "keys": ["alt+f12"], "command": "side_bar_open_in_browser", "args":{"paths":[], "type":"production"}} , | |
| { "keys": ["shift+f12"], "command": "goto_definition" }, | |
| { "keys": ["ctrl+shift+space"], "command": "select_quoted" }, | |
| { "keys": ["alt+down"], "command": "scroll_width", "args": {"amount": 30 } }, | |
| { "keys": ["alt+up"], "command": "scroll_width", "args": {"amount": -30 } }, | |
| { "keys": ["ctrl+up"], "command": "inc_dec_value", "args": { "action": "inc_min" } }, | |
| { "keys": ["ctrl+down"], "command": "inc_dec_value", "args": { "action": "dec_min" } }, | |
| { "keys": ["ctrl+shift+a"], "command": "expand_selection", "args": {"to": "tag"} }, | |
| { "keys": ["shift+delete"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
| { "keys": ["ctrl+shift+t"], "command": "open_recent_file", "args": {"index" : 0} }, | |
| { "keys": ["ctrl+alt+space"],"command": "insert_path", "args": { "type": "relative" } }, | |
| { "keys": ["ctrl+shift+w"], "command": "noop" }, | |
| { | |
| "no_outside_adj": true, | |
| "keys": ["ctrl+shift+space"], | |
| "command": "bh_key", | |
| "args": | |
| { | |
| "lines" : true, | |
| "plugin": | |
| { | |
| "type": ["__all__"], | |
| "command": "bh_modules.bracketselect" | |
| } | |
| } | |
| }, | |
| { "keys": ["super+f12"], "command": "open_terminal" }, | |
| { "keys": ["super+,"], "command": "run_macro_file", "args": {"file": "res://Packages/User/commaEndOfLine.sublime-macro"} }, | |
| {"keys": ["ctrl+0"], "command": "rename_tag", "context": [{"key": "emmet_action_enabled.rename_tag"}]}, | |
| { "keys": ["f2"], "command": "next_bookmark" }, | |
| { "keys": ["shift+f2"], "command": "prev_bookmark" }, | |
| { "keys": ["ctrl+f2"], "command": "toggle_bookmark" }, | |
| { "keys": ["ctrl+shift+f2"], "command": "clear_bookmarks" }, | |
| { "keys": ["alt+f2"], "command": "select_all_bookmarks" }, | |
| { "keys": ["ctrl+k"], "command": "toggle_side_bar" }, | |
| { "keys": ["ctrl+tab"], "command": "next_view" }, | |
| { "keys": ["ctrl+shift+tab"], "command": "prev_view" }, | |
| { "keys": ["alt+shift+t"], "command": "open_terminal" }, | |
| { "keys": ["alt+shift+alt+t"], "command": "open_terminal_project_folder" }, | |
| { "keys": ["ctrl+enter"], "command": "run_macro_file", "args": {"file": "res://Packages/User/addline.sublime-macro"} }, | |
| { "keys": ["ctrl+pagedown"], "command": "next_view" }, | |
| { "keys": ["ctrl+pageup"], "command": "prev_view" } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment