Skip to content

Instantly share code, notes, and snippets.

@cesarhdz
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cesarhdz/d414c24d199d44792625 to your computer and use it in GitHub Desktop.
Save cesarhdz/d414c24d199d44792625 to your computer and use it in GitHub Desktop.
[
{ "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+shift+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["ctrl+shift+up"], "command": "select_lines", "args": {"forward": false} },
// Ajustar lineas en CSS
{ "keys": ["ctrl+shift+alt+c"], "command": "css_sorter" },
// Match expresions
{
"keys": ["ctrl+l"],
"args": {"action": "evaluate_math_expression"},
"command": "run_zen_action"
},
// Plain tasks done
{
"keys": ["ctrl+k"],
"command": "plain_tasks_complete",
"context": [{ "key": "selector", "operator": "equal", "operand": "text.todo" }]
}
// Shell prompt
,{"keys": ["ctrl+alt+t"], "command": "shell_prompt"}
// Emmet custom
// Decrement -1
,{"keys": ["ctrl+down"],"args":{"action": "decrement_number_by_1"},"command": "run_emmet_action","context":[{"key": "emmet_action_enabled.decrement_number_by_01"}]}
// Wrap content como antes
,{"keys": ["shift+alt+w"], "command": "wrap_as_you_type", "context": [{"operand": false, "operator": "equal", "match_all": true, "key": "setting.is_widget"}, {"match_all": true, "key": "emmet_action_enabled.wrap_as_you_type"} ]}
// Code Folding para teclados es_MX
,{ "keys": ["ctrl+,"], "command": "fold" }
,{ "keys": ["ctrl+."], "command": "unfold" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment