1
1
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3836 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
David Lawrence Ramsey 2006-08-02 19:30:24 +00:00
родитель c6bef76a6c
Коммит 6da4e56f1e
2 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -210,8 +210,6 @@ CVS code -
- doc/syntax/c.nanorc: - doc/syntax/c.nanorc:
- Since .i and .ii are preprocessed C and C++ output, colorize - Since .i and .ii are preprocessed C and C++ output, colorize
them here. (Mike Frysinger) them here. (Mike Frysinger)
- Tweak the multiline comment regex to not color lines so
aggressively. (DLR, found by Mike Frysinger)
- doc/syntax/ruby.nanorc: - doc/syntax/ruby.nanorc:
- Add missing blank line after the first comment, for - Add missing blank line after the first comment, for
consistency. (DLR) consistency. (DLR)

Просмотреть файл

@ -24,4 +24,4 @@ color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*""
## Comment highlighting ## Comment highlighting
color brightblue "//.*" color brightblue "//.*"
color brightblue start="(/){1}\*" end="\*(/){1}" color brightblue start="/\*" end="\*/"