]> git.wh0rd.org Git - nano.git/commitdiff
per Mike Frysinger's patch with a few tweaks of mine, in
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 11 Apr 2007 22:18:16 +0000 (22:18 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Wed, 11 Apr 2007 22:18:16 +0000 (22:18 +0000)
doc/syntax/asm.nanorc, doc/syntax/c.nanorc, and doc/syntax/sh.nanorc,
copy the regex that highlights trailing whitespace from
doc/syntax/java.nanorc to these files, as it's also useful in them

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

ChangeLog
doc/syntax/asm.nanorc
doc/syntax/c.nanorc
doc/syntax/sh.nanorc

index 17d8ccb3d49f2166b627b6a3d7892365dac4145b..2b8348897efbea717338e2a6ca66b7918fed1f8c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-04-11  Mike Frysinger  <vapier@gentoo.org>
+
+       * doc/syntax/asm.nanorc, doc/syntax/c.nanorc,
+       doc/syntax/sh.nanorc: Copy the regex that highlights trailing
+       whitespace from doc/syntax/java.nanorc to these files, as it's
+       also useful in them.  (With minor tweaks by DLR.)
+
 2007-04-04  David Lawrence Ramsey  <pooka109@gmail.com>
 
        * AUTHORS, faq.html: Update email address.
index 7668ffee231662e2a63e25e72ee3bf9928aa78ae..e94ee90666086a3b2f4b7751ff589a714dc0b091 100644 (file)
@@ -13,3 +13,5 @@ color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*""
 ## Highlight comments
 color brightblue "//.*"
 color brightblue start="/\*" end="\*/"
+## Highlight trailing whitespace
+color ,green "[[:space:]]+$"
index cc0482cebe257b8b9f25d30d333bf5fdef178c01..45da48b7139f2f94261257514a9b98f35dbb3fc5 100644 (file)
@@ -25,3 +25,6 @@ color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*""
 ## Comment highlighting
 color brightblue "//.*"
 color brightblue start="/\*" end="\*/"
+
+## Trailing whitespace
+color ,green "[[:space:]]+$"
index 097f4852e9c9d6b1d52c5eac9ff602189a509ee4..f540f1b71d92ca6946186d7a5fc2e5a56f9e5151 100644 (file)
@@ -10,3 +10,4 @@ color brightblue "\<(cat|cd|chmod|chown|cp|echo|env|export|grep|install|let|ln|m
 icolor brightred "\$\{?[0-9A-Z_!@#$*?-]+\}?"
 color cyan "(^|[[:space:]])#.*$"
 color brightyellow ""(\\.|[^"])*"" "'(\\.|[^'])*'"
+color ,green "[[:space:]]+$"