diff options
author | AdobeWallHacks <michemiz1338@gmail.com> | 2022-01-05 15:50:18 -0500 |
---|---|---|
committer | AdobeWallHacks <michemiz1338@gmail.com> | 2022-01-05 15:50:18 -0500 |
commit | cc101f8f6242211fa42a6e8391956df071065f04 (patch) | |
tree | 190e1dcf88756f9f408c3eea62b22dac1a7fce41 /docs/modding | |
parent | b34234646a37f596956eef8b01eaa5786a90a42d (diff) | |
download | NorthstarWiki-cc101f8f6242211fa42a6e8391956df071065f04.tar.gz NorthstarWiki-cc101f8f6242211fa42a6e8391956df071065f04.zip |
Added syntax highlighting instructional.
Diffstat (limited to 'docs/modding')
-rw-r--r-- | docs/modding/squirrel/setup-syntax-highlighting.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/modding/squirrel/setup-syntax-highlighting.md b/docs/modding/squirrel/setup-syntax-highlighting.md new file mode 100644 index 0000000..489976b --- /dev/null +++ b/docs/modding/squirrel/setup-syntax-highlighting.md @@ -0,0 +1,24 @@ +# Syntax Highlighting +## Notepad++ +For Notepad++, define a custom language for Squirrel. +Luckily, [samisalreadytaken has written a squirrel highlighter](https://gist.github.com/samisalreadytaken/5bcf322332074f31545ccb6651b88f2d#file-squirrel-xml). +1. Download Squirrel.xml +2. At the top, edit ' ext="nut" ' to ' ext="nut gnut" ' so it works with gnut files as well. +3. Open Notepad++ +4. Navigate to Language > User Defined Language > Define your language +5. Click import, and select Squirrel.xml +(If the colors/style are not to your taste) +6. Select 'Squirrel' in User Language at the top +7. Navigate through the tabs to find what you want to change +8. Click its 'Styler' button and make the changes you wish to. + +## VSCode +VSCode has extensions avaliable for working with squirrel, and searching "squirrel" in the extensions marketplace will give you them. + +However, installing this will only create an associastion for .nut files, and not .gnut files. +To fix this: +1. Open a .gnut file. +2. Do CTRL+K, M (not CTRL+K, CTRL+M) +3. Select 'Configure File Association for .gnut' +4. Select 'Squirrel' (only appears if you have the extension) +5. Done!
\ No newline at end of file |