Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. [
  2. {
  3. "keys":["alt+down"],
  4. "command":"left_delete"
  5. },
  6. {
  7. "keys":["alt+shift+down"],
  8. "command":"chain",
  9. "args":{
  10. "commands":[
  11. ["move",{"by":"subwords","extend":true,"forward":false}],
  12. ["left_delete"]
  13. ]
  14. }
  15. },
  16. {
  17. "keys": ["ctrl+down"],
  18. "command": "scroll_lines",
  19. "args": { "amount": -10.0 }
  20. },
  21. {
  22. "keys": ["ctrl+up"],
  23. "command": "scroll_lines",
  24. "args": { "amount": 10.0 }
  25. },
  26. {
  27. "keys":["alt+shift+left"],
  28. "command":"move_to",
  29. "args":{ "to":"bol", "extend":true}
  30. },
  31. {
  32. "keys":["alt+shift+right"],
  33. "command":"move_to",
  34. "args":{ "to":"eol", "extend":true}
  35. },
  36. {
  37. "keys": ["alt+left"],
  38. "command": "move_to",
  39. "args": { "to": "bol", "extend": false }
  40. },
  41. {
  42. "keys": ["alt+right"],
  43. "command": "move_to",
  44. "args": { "to": "eol", "extend": false }
  45. },
  46. {
  47. "keys": ["ctrl+l"],
  48. "command": "insert_snippet",
  49. "args": {
  50. "contents": "console.log(${1:}$SELECTION)${0}"
  51. }
  52. },
  53. {
  54. "keys": ["tab"],
  55. "command": "expand_abbreviation_by_tab",
  56. "context": [
  57. {
  58. "operand": "source.js",
  59. "operator": "equal",
  60. "match_all": true,
  61. "key": "selector"
  62. },
  63. { "match_all": true, "key": "selection_empty" },
  64. {
  65. "operator": "equal",
  66. "operand": false,
  67. "match_all": true,
  68. "key": "has_next_field"
  69. },
  70. {
  71. "operand": false,
  72. "operator": "equal",
  73. "match_all": true,
  74. "key": "auto_complete_visible"
  75. },
  76. { "match_all": true, "key": "is_abbreviation" }
  77. ]
  78. },
  79. { "keys": ["ctrl+alt+m"], "command": "toggle_menu" },
  80. { "keys": ["ctrl+alt+s"], "command": "toggle_status_bar" }
  81. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement