mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-22 04:41:21 +03:00
Adding an example of a default syntax.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4904 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
277701f530
commit
8491c2251b
@ -2,6 +2,7 @@
|
||||
* src/nano (precalc_multicolorinfo): Do not match the ^ anchor when
|
||||
looking further on in a line. This prevents an end="^$" from being
|
||||
sometimes mistakenly matched. Fix inspired by Savannah bug #27708.
|
||||
* doc/syntax/default.nanorc: New file, example for a default syntax.
|
||||
|
||||
2014-05-17 Benno Schulenberg <bensberg@justemail.net>
|
||||
* doc/syntax/json.nanorc: New file, originally from Aapo Rantalainen,
|
||||
|
@ -5,6 +5,7 @@ pkgdata_DATA = asm.nanorc \
|
||||
c.nanorc \
|
||||
css.nanorc \
|
||||
debian.nanorc \
|
||||
default.nanorc \
|
||||
fortran.nanorc \
|
||||
gentoo.nanorc \
|
||||
go.nanorc \
|
||||
|
19
doc/syntax/default.nanorc
Normal file
19
doc/syntax/default.nanorc
Normal file
@ -0,0 +1,19 @@
|
||||
## An example of a default syntax, which is used
|
||||
## for files that do not match any other syntax.
|
||||
|
||||
syntax "default"
|
||||
|
||||
# Spaces in front of tabs.
|
||||
color ,red " + +"
|
||||
|
||||
# Trailing blanks.
|
||||
color ,red "[[:blank:]]+$"
|
||||
|
||||
# E-mail signatures.
|
||||
color yellow start="^-- $" end="^$"
|
||||
|
||||
# Nano's name.
|
||||
color brightred "(GNU )?nano( [1-9]\.[0-9]\.[^ ]+)?"
|
||||
|
||||
# Tease.
|
||||
color green "\<yellow\>"
|
Loading…
Reference in New Issue
Block a user