Created
April 14, 2016 03:22
-
-
Save sveggiani/86d8c63f01f1b2e41d4c97a5756e34db to your computer and use it in GitHub Desktop.
My Sublime Text 3 keyboard shortcut customizations for spanish keyboards
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
Show hidden characters
[ | |
/* Default fixes and customizations | |
----------------------------------------------------------------------------- | |
use "sublime.log_input(True)" in console to inspect key codes | |
use "sublime.log_commands(True)" in console to inspect triggered commands | |
*/ | |
// Alternative to open ST console | |
{ "keys": ["f8"], "command": "show_panel", "args": {"panel": "console"} }, | |
// Fixes for spanish keyboards | |
{ "keys": ["super+shift+,"], "command": "fold" }, | |
{ "keys": ["super+shift+."], "command": "unfold" }, | |
/* Plugins conflicts fixes | |
------------------------------------------------------------------------- */ | |
// Fixes "SublimeCondeIntel expand" overlaping "expand selection" | |
// { "keys": ["alt+space"], "command": "code_intel_auto_complete" }, | |
// { "keys": ["ctrl+shift+space"], "command": "expand_selection", "args": {"to": "scope"} } | |
// Fixes 'align' command conflict with SublimeCondeIntel | |
{ "keys": ["ctrl+shift+a"], "command": "alignment" }, | |
// Fixes conflict between Color Highlighter and Tag > expand select to tag | |
{ "keys": ["super+shift+a"], "command": "expand_selection", "args": {"to": "tag"} }, | |
// Fixes conflict between Color Highlighter and Color picker | |
{ "keys": ["super+shift+c"], "command": "color_pick" }, | |
// Customization for Sublime Extended Tab Switcher package | |
{ "keys": ["super+shift+o"], "command": "extended_switcher", "args": {"list_mode": "window"} }, | |
{ "keys": ["alt+super+shift+o"], "command": "extended_switcher", "args": {"list_mode": "active_group"} } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment