Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. [
  2. { "keys": ["alt+b"], "command": "goto_definition" },
  3. { "keys": ["f1"], "command": "dired", "args": { "immediate": true }},
  4. { "keys": ["super+ç"], "command": "toggle_comment", "args": { "block": false } },
  5. { "keys": ["super+shift+ç"], "command": "toggle_comment", "args": { "block": true } },
  6. { "keys": ["ctrl+,"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
  7. {
  8. "keys": ["tab"],
  9. "command": "chain",
  10. "args": {
  11. "commands": [
  12. ["expand_abbreviation_by_tab"],
  13. ["reg_replace", {"replacements": ["js_class"]}]
  14. ]
  15. },
  16. "context": [
  17. {"operand": "source.js", "operator": "equal", "match_all": true, "key": "selector"},
  18. {
  19. "key": "preceding_text",
  20. "operator": "regex_contains",
  21. "operand": "(\\w+>\\w+|\\s(\\.?|a|abbr|acronym|address|applet|area|article|aside|audio|b|base|basefont|bdi|bdo|bgsound|big|blink|blockquote|body|br|button|canvas|caption|center|cite|code|col|colgroup|command|content|data|datalist|dd|del|details|dfn|dialog|dir|div|dl|dt|element|em|embed|fieldset|figcaption|figure|font|footer|form|frame|frameset|head|header|hgroup|hr|html|i|iframe|image|img|input|ins|isindex|kbd|keygen|label|legend|li|link|listing|main|map|mark|marquee|menu|menuitem|meta|meter|multicol|nav|nobr|noembed|noframes|noscript|object|ol|optgroup|option|output|p|param|picture|plaintext|pre|progress|q|rp|rt|rtc|ruby|s|samp|script|section|select|shadow|small|source|spacer|span|strike|strong|style|sub|summary|sup|table|tbody|td|template|textarea|tfoot|th|thead|time|title|tr|track|tt|u|ul|var|video|wbr|xmp)\\.\\w+)",
  22. "match_all": true
  23. },
  24. {"key": "selection_empty", "operator": "equal", "operand": true, "match_all": true}
  25. ]
  26. }
  27. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement