Created
October 8, 2018 19:42
-
-
Save amid11/76e9cb317611cef99870ddd1129df405 to your computer and use it in GitHub Desktop.
VSCode (Mon Oct 08 2018)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Place your key bindings in this file to overwrite the defaults | |
| [{ | |
| "key": "ctrl+alt+b", | |
| "command": "HookyQR.beautifyFile" | |
| }, | |
| { | |
| "key": "ctrl+shift+t", | |
| "command": "editor.emmet.action.matchTag" | |
| }, | |
| { | |
| "key": "ctrl+alt+d", | |
| "command": "editor.emmet.action.balanceIn" | |
| }, | |
| { | |
| "key": "ctrl+shift+.", | |
| "command": "editor.emmet.action.selectNextItem" | |
| }, | |
| { | |
| "key": "ctrl+shift+,", | |
| "command": "editor.emmet.action.selectPrevItem" | |
| }, | |
| { | |
| "key": "ctrl+shift+l", | |
| "command": "editor.action.insertSnippet", | |
| "when": "editorTextFocus", | |
| "args": { | |
| "snippet": "console.log('${TM_SELECTED_TEXT}$1')$2;" | |
| } | |
| }, | |
| { | |
| "key": "ctrl+alt+d", | |
| "command": "insertDateString.insertOwnFormatDateTime", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+shift+alt+i", | |
| "command": "-insertDateString.insertOwnFormatDateTime", | |
| "when": "editorTextFocus" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment