Guest User

Untitled

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