Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. // Place your key bindings in this file to override the defaultsauto[]
  2. [
  3. {
  4. "key": "cmd+d",
  5. "command": "editor.action.deleteLines",
  6. "when": "textInputFocus && !editorReadonly"
  7. },
  8. {
  9. "key": "shift+cmd+k",
  10. "command": "-editor.action.deleteLines",
  11. "when": "textInputFocus && !editorReadonly"
  12. },
  13. {
  14. "key": "shift+",
  15. "command": "editor.action.insertLineAfter",
  16. "when": "editorTextFocus && !editorReadonly"
  17. },
  18. {
  19. "key": "cmd+enter",
  20. "command": "-editor.action.insertLineAfter",
  21. "when": "editorTextFocus && !editorReadonly"
  22. },
  23. {
  24. "key": "shift+enter",
  25. "command": "editor.action.insertLineAfter"
  26. }
  27. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement