Created
August 11, 2020 02:41
-
-
Save yayMark/3c112221dd2fb4dadf63a92ab750af44 to your computer and use it in GitHub Desktop.
Visual Studio Code snippets
This file contains 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
[ | |
{ | |
"key": "shift+alt+cmd+l", | |
"command": "editor.action.insertSnippet", | |
"when": "editorTextFocus", | |
"args": { | |
"snippet": "console.log('${TM_SELECTED_TEXT}$1: ', ${TM_SELECTED_TEXT})$2;" | |
} | |
}, | |
{ | |
"key": "shift+alt+cmd+c", | |
"command": "editor.action.insertSnippet", | |
"when": "editorTextFocus", | |
"args": { | |
"snippet": "display: flex;\n\tjustify-content: center;\n\talign-items: center;" | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment