Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. [
  2. { "keys": ["alt+b"], "command": "move", "args": {"by": "words", "forward": false} },
  3. { "keys": ["alt+f"], "command": "move", "args": {"by": "word_ends", "forward": true} },
  4.  
  5. {"keys": ["ctrl+b"], "command": "move", "args": {"by": "characters", "forward": false} },
  6. {"keys": ["ctrl+f"], "command": "move", "args": {"by": "characters", "forward": true} },
  7. {"keys": ["ctrl+p"], "command": "move", "args": {"by": "lines", "forward": false} },
  8. {"keys": ["ctrl+n"], "command": "move", "args": {"by": "lines", "forward": true} },
  9.  
  10.  
  11. {"keys": ["alt+d"], "command": "sbp_move_then_delete", "args": {"move_cmd": "sbp_move_word", "direction": 1}},
  12. {"keys": ["alt+backspace"], "command": "sbp_move_then_delete", "args": {"move_cmd": "sbp_move_word", "direction": -1}},
  13.  
  14. {"keys": ["ctrl+d"], "command": "right_delete"},
  15.  
  16. {"keys": ["ctrl+a"], "command": "move_to", "args": {"to": "hardbol", "extend": false }},
  17. {"keys": ["ctrl+e"], "command": "move_to", "args": {"to": "hardeol", "extend": false }},
  18.  
  19. { "keys": ["ctrl+alt+d"], "command": "plain_tasks_complete","context": [{ "key": "selector", "operator": "equal", "operand": "text.todo" }] },
  20. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement