diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e607c2b..b524c65 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -20,4 +20,5 @@ jobs: body: Release tag ${{ github.ref_name }} files: | gen/rascript.tmLanguage.json - gen/rascript.tmLanguage \ No newline at end of file + gen/rascript.tmLanguage + gen/RAScript.xml \ No newline at end of file diff --git a/RAScript.xml b/RAScript.xml new file mode 100644 index 0000000..ff55acd --- /dev/null +++ b/RAScript.xml @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index 66fc890..d2ba9c5 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ run `make generate` to create the grammar files in the `gen` folder. The current * rascript.tmLanguage.json -- vscode, linguist * rascript.tmLanguage -- sublime +* RAScript.xml -- Notepad++ ## Download @@ -17,4 +18,5 @@ Grab the latest generated files on the [release](https://github.com/joshraphael/ ## Projects Using rascript-syntax - [vscode-rascript](https://github.com/joshraphael/vscode-rascript) - VSCode language client for RAScript. -- [sublime-rascript](https://github.com/joshraphael/sublime-rascript) - SublimeText language client for RAScript. \ No newline at end of file +- [sublime-rascript](https://github.com/joshraphael/sublime-rascript) - SublimeText language client for RAScript. +- [npp-rascript](https://github.com/joshraphael/npp-rascript) - Notepad++ language client for RAScript. \ No newline at end of file diff --git a/scripts/generate.sh b/scripts/generate.sh index ee17e2b..18a806c 100755 --- a/scripts/generate.sh +++ b/scripts/generate.sh @@ -7,4 +7,5 @@ if [[ ${GITHUB_REF_NAME} != "" ]]; then fi sed "s//$VERSION/g" rascript.tmLanguage.json > gen/rascript.tmLanguage.json -plistutil -f xml -i gen/rascript.tmLanguage.json -o gen/rascript.tmLanguage \ No newline at end of file +plistutil -f xml -i gen/rascript.tmLanguage.json -o gen/rascript.tmLanguage +sed "s//$VERSION/g" RAScript.xml > gen/RAScript.xml \ No newline at end of file