Skip to content

Instantly share code, notes, and snippets.

@samuelsimoes
Created October 4, 2012 13:15
Show Gist options
  • Save samuelsimoes/3833458 to your computer and use it in GitHub Desktop.
Save samuelsimoes/3833458 to your computer and use it in GitHub Desktop.
Deixando o Sublime Text no Windows parecido (em questão de atalhos) com o MacOS
[
{ "keys": ["alt+left"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["alt+right"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["alt+shift+left"], "command": "move_to", "args": {"to": "bol", "extend": true} },
{ "keys": ["alt+shift+right"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["alt+shift+p"], "command": "show_overlay", "args": {"overlay": "command_palette"} },
{ "keys": ["alt+shift+o"], "command": "file_navigator" },
{ "keys": ["alt+super+f"], "command": "show_panel", "args": {"panel": "replace"} },
{ "keys": ["alt+shift+c"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["alt+super+right"], "command": "next_view" },
{ "keys": ["alt+super+left"], "command": "prev_view" },
{ "keys": ["alt+super+up"], "command": "move_to", "args": {"to": "bof", "extend": false} },
{ "keys": ["alt+super+down"], "command": "move_to", "args": {"to": "eof", "extend": false} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment