This is a simple ring language syntax highlighter for notepad++ if you don't know what ring language is refer to : http://ring-lang.net/
- Automatically activates on files with the
.ring
extension - Folding for
if but else ok
statments and{ }
- Clone this repository or download
Ring.xml
in thesyntax
folder - Open Notepad++
- Open the "Language" menu
- Select "Define your language..."
- Click "Import..."
- select
Ring.xml
- Select "OK" on the "Import successful" dialog and close the "User Defined Language" dialog/panel
- You may need to restart notepad++
- Enjoy :)
- Open notepad++ if it's not already opend
- Open the "Run" menu
- Choose
Run...
- On the run dialog Put this command(Change
RING_BIN_FOLDER
to point to ring folder):
cmd /K cd /D "RING_BIN_FOLDER" && run.bat "$(FULL_CURRENT_PATH)""
i.e if ring.exe is in c:\ring\bin\ my command would be:
cmd /K cd /D "c:\ring\bin\" && run.bat "$(FULL_CURRENT_PATH)"