Ruby Syntax Highlighter for Nano

I spent around an hour looking for a Ruby syntax highlighter for Nano.
I couldn’t find one so I decided to try my best at creating my own. If
anyone has any suggestions or wants to help improve it, be my guest.

Get it here: http://jungsource.pastebin.com/477379

To install:
Copy and add all of the text from pastebin to the bottom of ~/.nanorc
If .nanorc does not exist create it.

Nanorc doc - Manpage of NANORC

Note: Tested using Nano 1.2.4 in Fedora Core 3 Linux

Hey Jason,

Good work… i’ve searched for it too, but after looking through the
existing
styles i decided it’s not worth the effort and switched to vim
instead…
However, nano has been/and for really quick editing still is, my
favorite
editor.

thx a lot for your effort :slight_smile:


Am Samstag, 24. Dezember 2005 07:36 schrieb Jason Jung:

Version 0.8.1
Added Ryan S.'s suggestion

http://jungsource.pastebin.com/477686

On Dec 24, 2005, at 1:36 AM, Jason Jung wrote:

Nanorc doc - Manpage of NANORC

Note: Tested using Nano 1.2.4 in Fedora Core 3 Linux


Posted via http://www.ruby-forum.com/.

One quick edit to your script.

If you swap the following two segments, the highlighter won’t think “#
{expression}” is a comment.

Words in Quotes

#color green “”[^"]“”
color green “”[^"]
“|qq|.|"
color green "‘[^’]
'”

Comments

color brightyellow “#.*”

TO

Comments

color brightyellow “#.*”

Words in Quotes

#color green “”[^"]“”
color green “”[^"]
“|qq|.|"
color green "‘[^’]
'”