Skip to content

Instantly share code, notes, and snippets.

@exnius
Created October 17, 2013 04:26
Show Gist options
  • Save exnius/7019202 to your computer and use it in GitHub Desktop.
Save exnius/7019202 to your computer and use it in GitHub Desktop.
Keybindings para Sublime Text 2 si se usa un teclado en español de latinoamérica.
[
{ "keys": ["ctrl+keypad_multiply"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["ctrl+p"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
// { "keys": ["ctrl+alt+enter"], "command": "show_overlay", "args": {"overlay": "command_palette"} },
{ "keys": ["ctrl+."], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+o"], "command": "open_dir", "args": {"dir": "$file_path", "file": "$file_name"} },
{ "keys": ["ctrl+shift+."], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["ctrl+k", "f1"], "command": "reveal_in_side_bar" },
{ "keys": ["ctrl+alt+s"], "command": "save_all" },
{ "keys": ["ctrl+shift+a"], "command": "reindent"},
{ "keys": ["ctrl+shift+f1"], "command": "fold" },
{ "keys": ["ctrl+/"], "command": "fold" },
{ "keys": ["ctrl+shift+/"], "command": "unfold" },
{ "keys": ["ctrl+shift+f2"], "command": "unfold" },
{ "keys": ["ctrl+k", "ctrl+c"], "command": "show_panel", "args": {"panel": "console", "toggle": true} }
// Last
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment