keybindings.json 413 B

1234567891011121314151617181920
  1. // Place your key bindings in this file to overwrite the defaults
  2. [
  3. {
  4. "key": "ctrl+l",
  5. "command": "editor.action.deleteLines",
  6. "when": "editorTextFocus && !editorReadonly"
  7. },{
  8. "key": "ctrl+shift+i",
  9. "command": "editor.action.toggleRenderWhitespace"
  10. },{
  11. "key": "ctrl+d",
  12. "command": "editor.action.copyLinesDownAction"
  13. },{
  14. "key": "alt+2",
  15. "command": "type",
  16. "args": {
  17. "text": "`"
  18. }
  19. }
  20. ]