key.json 733 B

12345678910111213141516171819202122232425262728293031323334
  1. [
  2. {
  3. "key": "ctrl+oem_3",
  4. "command": "-workbench.action.terminal.toggleTerminal"
  5. },
  6. {
  7. "key": "ctrl+d",
  8. "command": "editor.action.deleteLines",
  9. "when": "textInputFocus && !editorReadonly"
  10. },
  11. {
  12. "key": "shift+alt+w",
  13. "command": "editor.foldRecursively",
  14. "when": "editorTextFocus"
  15. },
  16. {
  17. "key": "shift+alt+s",
  18. "command": "editor.unfold",
  19. "when": "editorTextFocus"
  20. },
  21. {
  22. "key": "shift+alt+s",
  23. "command": "editor.unfoldRecursively"
  24. },
  25. {
  26. "key": "ctrl+alt+f",
  27. "command": "eslint.executeAutofix"
  28. },
  29. {
  30. "key": "alt+oem_2",
  31. "command": "editor.action.triggerSuggest",
  32. "when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly"
  33. }
  34. ]