Guest User

Untitled

a guest
Apr 29th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. [
  2. { "keys": ["f12"], "command": "htmlprettify"},
  3. { "keys": ["f1"], "command": "fold" },
  4. { "keys": ["f2"], "command": "unfold" },
  5. { "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": "@"} },
  6.  
  7. { "keys": ["ctrl+space"], "command": "auto_complete" },
  8. { "keys": ["ctrl+space"], "command": "replace_completion_with_auto_complete", "context":
  9. [
  10. { "key": "last_command", "operator": "equal", "operand": "insert_best_completion" },
  11. { "key": "auto_complete_visible", "operator": "equal", "operand": false },
  12. { "key": "setting.tab_completion", "operator": "equal", "operand": true }
  13. ]
  14. },
  15. { "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
  16. { "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": false } },
  17. { "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": true } },
  18. { "keys": ["ctrl+shift+f"], "command": "reindent" , "args": {"single_line": false}},
  19. { "keys": ["alt+up"], "command": "swap_line_up" },
  20. { "keys": ["alt+down"], "command": "swap_line_down" },
  21. { "keys": ["ctrl+alt+down"], "command": "duplicate_line" },
  22. { "keys": ["shift+ctrl+r"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
  23. { "keys": ["ctrl+shift+s"], "command": "save_all" },
  24. { "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
  25. { "keys": ["shift+ctrl+f4"], "command": "close_all" },
  26. { "keys": ["shift+ctrl+y"], "command": "lower_case" },
  27. { "keys": ["shift+ctrl+x"], "command": "upper_case" }
  28. ]
Add Comment
Please, Sign In to add comment