Last active
December 1, 2021 17:44
-
-
Save kgmorales/a87f232fa7b2a30fed2122f7045126a0 to your computer and use it in GitHub Desktop.
Quokka keybindings.
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
// extension should be: | |
// "quokka-snippets.code-snippets" | |
// is json for gist formatting. | |
{ | |
"Quokka Expression": { | |
"scope": "javascript,typescript", | |
"prefix": "/}", | |
"body": "/*? $1$ */", | |
"description": "Log expression result" | |
}, | |
"Quokka Log": { | |
"scope": "javascript,typescript", | |
"prefix": "/?", | |
"body": "//?", | |
"description": "Log Quokka result" | |
}, | |
"Quokka Expand": { | |
"scope": "javascript,typescript", | |
"prefix": "/+", | |
"body": "//?+", | |
"description": "Expand Quokka Expression" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment