Created
June 10, 2016 01:35
-
-
Save mul14/e8f8fed253b88fc17bfbfa851fe81774 to your computer and use it in GitHub Desktop.
My Sublime Text 3 Configurations
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": ["super+shift+v"], "command": "paste" }, | |
{ "keys": ["super+v"], "command": "paste_and_indent" }, | |
{"keys": ["super+\\"], "command": "toggle_side_bar"}, | |
{"keys": ["shift+super+n"], "command": "advanced_new_file_new"}, | |
{"keys": ["shift+5"], "command": "move_to", "args": {"to": "brackets"} }, | |
{"keys": ["ctrl+\\"], "command": "toggle_side_bar"}, | |
{"keys": ["super+shift+space"], "command": "expand_region"}, | |
{"keys": ["option+up"], "command": "expand_region"}, | |
{"keys": ["option+down"], "command": "expand_region", "args": {"undo": true }, "context": [{"key": "expand_region_soft_undo"}] }, | |
{"keys": ["super+backspace"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} }, | |
{"keys": ["escape"], "command": "exit_auto_complete_and_insert_mode", "context": [{"key": "auto_complete_visible", "operator": "equal", "operand": true }] }, | |
{"keys": ["ctrl+["], "command": "exit_auto_complete_and_insert_mode", "context": [{"key": "auto_complete_visible", "operator": "equal", "operand": true }] }, | |
{"keys": ["j", "j"], "command": "_enter_normal_mode", "args": {"mode": "mode_insert"}, "context": [{"key": "vi_insert_mode_aware"}] }, | |
{"keys": ["shift+super+up"], "command": "swap_line_up"}, | |
{"keys": ["shift+option+up"], "command": "swap_line_up"}, | |
{"keys": ["shift+super+down"], "command": "swap_line_down"}, | |
{"keys": ["shift+option+down"], "command": "swap_line_down"}, | |
{"keys": ["super+shift+j"], "command": "join_lines"}, | |
{ | |
"keys": ["f1"], | |
"command": "dired", | |
"args": { | |
"immediate": true, | |
"single_pane": true, | |
"other_group": "left", | |
"project": true, | |
"vcs_color_blind": true, | |
"dired_hidden_files_patterns": [".*", "__pycache__", "*.pyc"] | |
} | |
}, | |
{"keys": ["f3"], "command": "dired_jump", "args": {"new_window": true } }, | |
{"keys": ["f3"], "command": "dired_jump_list"}, | |
{ "keys": [":", "v", "s"], "command": "create_pane", "args": {"direction": "right", "give_focus": true} }, | |
{ "keys": [":", "s", "p"], "command": "create_pane", "args": {"direction": "down", "give_focus": true} }, | |
{ "keys": [":", "b", "d"], "command": "destroy_pane", "args": {"direction": "self"} }, | |
] |
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
[ | |
{ | |
"button": "button1", | |
"count": 1, | |
"modifiers": ["ctrl", "alt"], | |
"press_command": "drag_select", | |
"command": "goto_definition" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment