Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. [
  2. { "keys": ["shift+super+minus"], "command": "toggle_comment", "args": { "block": false } },
  3. { "keys": ["super+d"], "command": "duplicate_line" },
  4. { "keys": ["shift+super+r"], "command": "find_all_under" },
  5. { "keys": ["ctrl+o"], "command": "prompt_open_file" },
  6. {
  7. "keys": ["super+alt+l"],
  8. "command": "jsbeautify",
  9. "context": [{
  10. "key": "selector",
  11. "operator": "equal",
  12. "operand": "source.js,source.json,source.jade"
  13. }
  14. ]
  15. },
  16. { "keys": ["super+shift+n"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
  17. { "keys": ["super+r"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} },
  18. { "keys": ["ctrl+alt+left"], "command": "jump_back" },
  19. { "keys": ["ctrl+alt+right"], "command": "jump_forward" },
  20. {
  21. "keys": ["super+alt+l"],
  22. "command": "jsbeautify",
  23. "context": [{
  24. "key": "selector",
  25. "operator": "equal",
  26. "operand": "source.js,source.json,source.jade"
  27. }
  28. ]
  29. },
  30. { "keys": ["shift+super+alt+up"], "command": "swap_line_up" },
  31. { "keys": ["shift+super+alt+down"], "command": "swap_line_down" },
  32. { "keys": ["shift+super+k"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
  33. { "keys": ["super+alt+enter"], "command": "replace_all", "args": {"close_panel": true},
  34. "context": [{"key": "panel", "operand": "replace"}, {"key": "panel_has_focus"}]
  35. },
  36. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement