diff options
author | Kartik Agaram <vc@akkartik.com> | 2021-11-08 18:49:15 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2021-11-08 18:49:15 -0800 |
commit | 2bac01fb7b4e43a2f7e707b7848d1b925d598cda (patch) | |
tree | ee776cf03a887b5e341d12f250175e55dc148250 /editor/VSCode/.vscode | |
parent | 11a191c2906fbaa2d80192da833b727984cf8f94 (diff) | |
download | mu-2bac01fb7b4e43a2f7e707b7848d1b925d598cda.tar.gz |
syntax highlighting for Visual Studio Code
Diffstat (limited to 'editor/VSCode/.vscode')
-rw-r--r-- | editor/VSCode/.vscode/launch.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/editor/VSCode/.vscode/launch.json b/editor/VSCode/.vscode/launch.json new file mode 100644 index 00000000..0e191b59 --- /dev/null +++ b/editor/VSCode/.vscode/launch.json @@ -0,0 +1,17 @@ +// A launch configuration that launches the extension inside a new window +// Use IntelliSense to learn about possible attributes. +// Hover to view descriptions of existing attributes. +// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Extension", + "type": "extensionHost", + "request": "launch", + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}" + ] + } + ] +} \ No newline at end of file |