Last active
April 3, 2020 02:33
-
-
Save darkcolonist/9d3ea5020eaac0550386ce58974e5871 to your computer and use it in GitHub Desktop.
my personal sublime keybindings
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" : ["f12"], "command" : "reindent" } | |
// , {"keys" : ["f12"], "command" : "toggle_side_bar" } | |
, {"keys" : ["ctrl+b"], "command" : "goto_definition" } | |
, { "keys": ["ctrl+alt+shift+up"], "command" : "select_lines", "args": {"forward": false} } | |
, { "keys": ["ctrl+alt+shift+down"], "command" : "select_lines", "args": {"forward": true} } | |
, { "keys": ["ctrl+shift+r"], "command" : "goto_symbol_in_project" } | |
// for multi-window approach | |
, { "keys": ["alt+left"], "command" : "focus_neighboring_group", "args": {"forward": false} } | |
, { "keys": ["alt+right"], "command" : "focus_neighboring_group" } | |
, { "keys": ["alt+up"], "command" : "new_pane" } | |
// , { "keys": ["alt+shift+up"], "command" : "new_pane", "args": {"move": false} } | |
, { "keys": ["alt+down"], "command" : "close_pane" } | |
, { "keys": ["alt+shift+left"], "command" : "move_to_neighboring_group", "args": {"forward": false} } | |
, { "keys": ["alt+shift+right"], "command" : "move_to_neighboring_group" } | |
, { "keys": ["ctrl+left"], "command" : "move", "args": {"by": "subwords", "forward": false} } | |
, { "keys": ["ctrl+right"], "command" : "move", "args": {"by": "subword_ends", "forward": true} } | |
, { "keys": ["ctrl+shift+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"} } | |
, { "keys": ["f5"], "command": "build" } | |
, { "keys": ["ctrl+f5"], "command": "exec", "args": {"kill": true} } | |
, { "keys": ["shift+ctrl+alt+n"], "command": "advanced_new_file_new", "args": {"is_python": true}} | |
, { "keys": ["alt+`"], "command": "focus_side_bar" } | |
, { "keys": ["ctrl+alt+d"], "command": "insert_date" } | |
, { "keys": ["alt+shift+`"], "command": "open_terminal" } | |
, { "keys": ["alt+`"], "command": "open_terminal_project_folder" } | |
, { "keys": ["alt+o"], "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"} } | |
, { "keys": ["ctrl+shift+t"], "command": "reopen_last_file" } | |
, { "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment