Guest User

Untitled

a guest
Dec 11th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. [
  2. /* file */
  3. { "keys": ["ctrl+x+s"], "command": "save" },
  4.  
  5. /* edit */
  6. { "keys": ["ctrl+/"], "command": "undo" },
  7. { "keys": ["ctrl+shift+/"], "command": "redo"},
  8. { "keys": ["alt+d"], "command": "delete_word", "args": { "forward": true, "sub_words": true } },
  9. { "keys": ["ctrl+w"], "command": "cut" },
  10. { "keys": ["alt+w"], "command": "copy" },
  11.  
  12. /* text navigation*/
  13. { "keys": ["alt+b"], "command": "move", "args": {"by": "subwords", "forward": false} },
  14. { "keys": ["alt+f"], "command": "move", "args": {"by": "subword_ends", "forward": true} },
  15. { "keys": ["alt+g", "alt+g"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"}},
  16.  
  17. /* navigation */
  18. { "keys": ["ctrl+super+["], "command": "prev_view" },
  19. { "keys": ["ctrl+super+]"], "command": "next_view" },
  20. { "keys": ["ctrl+t"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
  21. { "keys": ["ctrl+r"], "command": "show_overlay", "args": {"overlay": "goto", "text": "@"} },
  22. { "keys": ["alt+v"], "command": "move", "args": {"by": "pages", "forward": false} },
  23.  
  24. /* indentation */
  25. { "keys": ["ctrl+]"], "command": "indent" },
  26. { "keys": ["ctrl+["], "command": "unindent" },
  27. { "keys": ["tab"], "command": "reindent"},
  28.  
  29. /* mark */
  30. { "keys": ["ctrl+j"], "command": "set_mark" },
  31. { "keys": ["ctrl+h"], "command": "select_to_mark"},
  32. { "keys": ["ctrl+g"], "command": "clear_bookmarks", "args": {"name": "mark"} },
  33.  
  34. /* screen */
  35. { "keys": ["super+ctrl+f"], "command": "toggle_distraction_free" }
  36. ]
Add Comment
Please, Sign In to add comment