|
@@ -2,16 +2,17 @@
|
|
|
|
|
|
No known bugs:
|
|
No known bugs:
|
|
* Multiline comments work now
|
|
* Multiline comments work now
|
|
-
|
|
|
|
-
|
|
|
|
->[original source](https://git.catrenelle.com/Kevin_Smarts/glife/src/master/tools/syntax/VSCode/qsrc)
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+* Codefolding improved
|
|
|
|
+* automatic indentation added
|
|
___
|
|
___
|
|
|
|
|
|
-Usage:
|
|
|
|
|
|
+General usage:
|
|
* Copy qsrc folder to `%homepath%\.vscode\extensions`
|
|
* Copy qsrc folder to `%homepath%\.vscode\extensions`
|
|
|
|
|
|
|
|
+Snippet usage:
|
|
|
|
+* type `loop`, `for`, `foreach` or `jump` and hit [Enter] for the `Loop` code snippet
|
|
|
|
+* [Tab] through the variables to rename them
|
|
|
|
+___
|
|
### Customize formatting ###
|
|
### Customize formatting ###
|
|
Modify settings.json (location: `%appdata%\Code\User\`)
|
|
Modify settings.json (location: `%appdata%\Code\User\`)
|
|
* Example content:
|
|
* Example content:
|
|
@@ -91,4 +92,13 @@ Modify settings.json (location: `%appdata%\Code\User\`)
|
|
]
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-```
|
|
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+___
|
|
|
|
+Resources:
|
|
|
|
+> [original source](https://git.catrenelle.com/Kevin_Smarts/glife/src/master/tools/syntax/VSCode/qsrc)
|
|
|
|
+
|
|
|
|
+> Docs: [manifest file](https://code.visualstudio.com/api/references/extension-manifest),
|
|
|
|
+> [language config](https://code.visualstudio.com/api/language-extensions/language-configuration-guide),
|
|
|
|
+>[user snippets](https://code.visualstudio.com/docs/editor/userdefinedsnippets),
|
|
|
|
+>[regex quick ref](https://docs.microsoft.com/en-us/dotnet/standard/base-types/regular-expression-language-quick-reference)
|