nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 053fabd4e1ab51bce64880e1814938fc658d0d8c
parent ad8476eb7de8c99902e3207cf291863ff5afcbaa
Author: Chris Allegretta <chrisa@asty.org>
Date:   Wed, 14 Apr 2010 02:38:56 +0000

2010-04-13 Felipe Bugno <necron@bol.com.br>
        * doc/syntax/cmake.nanorc: Added cmake syntax highlighting file.



git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4498 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
MChangeLog | 3+++
Mdoc/syntax/Makefile.am | 1+
Adoc/syntax/cmake.nanorc | 19+++++++++++++++++++
3 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,6 @@ +2010-04-13 Felipe Bugno <necron@bol.com.br> + * doc/syntax/cmake.nanorc: Added cmake syntax highlighting file. + 2010-04-09 Chris Allegretta <chrisa@asty.org> * files.c (do_writeout): Better security fixes for backup file writing, mangled from submission by Dan Rosenberg <dan.j.rosenberg at gmail>. diff --git a/doc/syntax/Makefile.am b/doc/syntax/Makefile.am @@ -1,5 +1,6 @@ pkgdata_DATA = asm.nanorc \ c.nanorc \ + cmake.nanorc \ groff.nanorc \ html.nanorc \ java.nanorc \ diff --git a/doc/syntax/cmake.nanorc b/doc/syntax/cmake.nanorc @@ -0,0 +1,19 @@ +## CMake syntax highlighter for GNU Nano +## +syntax "cmake" "(CMakeLists\.txt|\.cmake)$" + +icolor green "^[[:space:]]*[A-Z0-9_]+" +icolor brightyellow "^[[:space:]]*(include|include_directories|include_external_msproject)\>" + +icolor brightgreen "^[[:space:]]*\<((else|end)?if|else|(end)?while|(end)?foreach|break)\>" +color brightgreen "\<(NOT|COMMAND|POLICY|TARGET|EXISTS|IS_(DIRECTORY|ABSOLUTE)|DEFINED)\>[[:space:]]" +color brightgreen "[[:space:]]\<(OR|AND|IS_NEWER_THAN|MATCHES|(STR|VERSION_)?(LESS|GREATER|EQUAL))\>[[:space:]]" + +icolor brightred "^[[:space:]]*\<((end)?(function|macro)|return)" + +icolor cyan start="\$(\{|ENV\{)" end="\}" +color magenta "\<(APPLE|UNIX|WIN32|CYGWIN|BORLAND|MINGW|MSVC(_IDE|60|71|80|90)?)\>" + +icolor brightblue "^([[:space:]]*)?#.*" +icolor brightblue "[[:space:]]#.*" +color ,green "[[:space:]]+$"