vscode-texinfo/scripts/prepare.sh

7 lines
258 B
Bash
Raw Normal View History

2020-10-03 18:04:18 +00:00
#!/usr/bin/env sh
# Convert TextMate grammar from CSON to JSON (VSCode cannot recognize CSON ones).
TMGRAMMAR_CSON=./node_modules/language-texinfo/grammars/texinfo.cson
TMGRAMMAR_JSON=./out/texinfo.tmGrammar.json
cson2json $TMGRAMMAR_CSON > $TMGRAMMAR_JSON