Created
March 16, 2018 12:44
-
-
Save mauroreisvieira/0beb2c9f591654a8a7ae81db511340e5 to your computer and use it in GitHub Desktop.
Sublime Text my configurations for keymap
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": ["alt+shift+f"], "command": "toggle_distraction_free" }, | |
{ "keys": ["command+alt+up"], "command": "fold" }, | |
{ "keys": ["command+alt+down"], "command": "unfold" }, | |
{ "keys": ["command+shift+r"], "command": "goto_symbol_in_project" }, | |
{ "keys": ["command+i"], "command": "reindent", "args": { "single_line": false } }, | |
{ "keys": ["command+shift+a"], "command": "align_tab", "args" : {"live_preview" : true} }, | |
{ | |
"keys": ["command+t"], | |
"command": "open_terminal", | |
"args": { | |
"parameters": [ | |
"-T", | |
"Working in directory %CWD%" | |
] | |
} | |
}, | |
{ | |
"keys": ["super+right"], | |
"command": "move_to", | |
"args" : { | |
"to" : "hardeol", | |
"extend" : false | |
} | |
}, | |
{ | |
"keys": ["super+left"], | |
"command": "move_to", | |
"args" : { | |
"to" : "hardbol", | |
"extend" : false | |
} | |
}, | |
{ | |
"keys": ["super+shift+right"], | |
"command": "move_to", | |
"args" : { | |
"to" : "hardeol", | |
"extend" : true | |
} | |
}, | |
{ | |
"keys": ["super+shift+left"], | |
"command": "move_to", | |
"args" : { | |
"to" : "hardbol", | |
"extend" : true | |
} | |
}, | |
{ "keys": ["alt+r"], "command": "reveal_in_side_bar"}, | |
{ "keys": ["command+shift+t"], "command": "toggle_tabs" }, | |
{ | |
"keys": ["command+shift+l"], | |
"command": "console_wrap", | |
"args": {"insert_before": false} | |
}, | |
{ | |
"keys": ["tab"], | |
"command": "expand_abbreviation_by_tab", | |
"context": [ | |
{ | |
"operand": "meta.group.braces.round.js, text.html", | |
"operator": "equal", | |
"match_all": true, | |
"key": "selector" | |
}, | |
{ | |
"match_all": true, | |
"key": "selection_empty" | |
}, | |
{ | |
"operator": "equal", | |
"operand": false, | |
"match_all": true, | |
"key": "has_next_field" | |
}, | |
{ | |
"operand": false, | |
"operator": "equal", | |
"match_all": true, | |
"key": "auto_complete_visible" | |
}, | |
{ | |
"match_all": true, | |
"key": "is_abbreviation" | |
} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment