Guest User

Untitled

a guest
Jan 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. [
  2. { "keys": ["alt+shift+d"], "command": "duplicate_line_selector" },
  3. { "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" },
  4. {
  5. "keys": ["ctrl+b"],
  6. "command": "insert_snippet",
  7. "args" : { "contents": "<strong>$SELECTION</strong>$0" }
  8. },
  9. {
  10. "keys": ["ctrl+i"],
  11. "command": "insert_snippet",
  12. "args" : { "contents": "<em>$SELECTION</em>$0" }
  13. },
  14. {
  15. "keys": ["alt+enter"],
  16. "command": "insert_snippet",
  17. "args" : { "contents": "<br />$1" }
  18. },
  19. { "keys": ["ctrl+tab"], "command": "next_view" },
  20. { "keys": ["ctrl+shift+tab"], "command": "prev_view" },
  21. {
  22. "keys": [
  23. "shift+f1"
  24. ],
  25. "args": {
  26. "action": "match_pair_outward"
  27. },
  28. "command": "run_emmet_action",
  29. "context": [
  30. {
  31. "key": "emmet_action_enabled.match_pair_outward"
  32. }
  33. ]
  34. },
  35. { "keys": ["f1"], "command": "custom_fold_unfold" },
  36. { "keys": ["ctrl+up"], "command": "scroll_lines", "args": {"amount": 1.0 } },
  37. { "keys": ["ctrl+down"], "command": "scroll_lines", "args": {"amount": -1.0 } },
  38. {
  39. "keys": [
  40. "alt+up"
  41. ],
  42. "args": {
  43. "action": "increment_number_by_1"
  44. },
  45. "command": "run_emmet_action",
  46. "context": [
  47. {
  48. "key": "emmet_action_enabled.increment_number_by_1"
  49. }
  50. ]
  51. },
  52. {
  53. "keys": [
  54. "alt+down"
  55. ],
  56. "args": {
  57. "action": "decrement_number_by_1"
  58. },
  59. "command": "run_emmet_action",
  60. "context": [
  61. {
  62. "key": "emmet_action_enabled.decrement_number_by_1"
  63. }
  64. ]
  65. },
  66. { "keys": ["shift+delete"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
  67. { "keys": ["ctrl+q"], "command": "encode_html_entities" },
  68. { "keys": ["alt+shift+f"], "command": "reindent", "args": {"single_line": false } }
  69. ]
Add Comment
Please, Sign In to add comment