I wasn't aware you could use vscode extensions for vs?
AFAIK visual studio code is different than visual studio. vscode is 100% free for one
THe YAML files are using a custom builder, so you would have to use node, then npm install, then npm run build to create the official .tmLanguage files. Have you tried that? They are not in the github repo (only src files are)
the npm build script converts using the same libraries that plugin you mentioned uses to convert, in fact I used the source from that plugin as inspiration for my build script. (they used a lot of verbose code tho I did it in by far less lines)
Observe:
https://github.com/Togusa09/vscode-tmla ... #L147-L170
The 2 libraries: yamljs and plist are used to convert the yaml files, which I use here:
https://github.com/MattMcFarland/ManiaS ... js#L14-L17
Which give the exact same results
You can use the following commands to build the .tmLanguage files - please make sure you have nodejs isntalled first
Code: Select all
# in BASH command line interface:
npm install
npm run build
Then you should see the portable .tmLanguage files in the /syntaxes directory.
I hope this helps!