1234567891011121314151617181920 |
- // Place your key bindings in this file to overwrite the defaults
- [
- {
- "key": "ctrl+l",
- "command": "editor.action.deleteLines",
- "when": "editorTextFocus && !editorReadonly"
- },{
- "key": "ctrl+shift+i",
- "command": "editor.action.toggleRenderWhitespace"
- },{
- "key": "ctrl+d",
- "command": "editor.action.copyLinesDownAction"
- },{
- "key": "alt+2",
- "command": "type",
- "args": {
- "text": "`"
- }
- }
- ]
|