Improving the colouring of message tags in PO files.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5219 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
ec8d51bee3
commit
9233c98a7e
|
@ -2,6 +2,7 @@
|
||||||
* src/color.c (color_update): Match the file regex of a syntax against
|
* src/color.c (color_update): Match the file regex of a syntax against
|
||||||
the absolute, canonical path instead of against the path the user gave.
|
the absolute, canonical path instead of against the path the user gave.
|
||||||
This fixes Savannah bug #44288, reported by Mike Frysinger.
|
This fixes Savannah bug #44288, reported by Mike Frysinger.
|
||||||
|
* doc/syntax/po.nanorc: Improve the colouring of message tags.
|
||||||
|
|
||||||
2015-04-25 Benno Schulenberg <bensberg@justemail.net>
|
2015-04-25 Benno Schulenberg <bensberg@justemail.net>
|
||||||
* src/search.c (do_replace_loop): Remove the unintended special
|
* src/search.c (do_replace_loop): Remove the unintended special
|
||||||
|
|
|
@ -6,16 +6,16 @@ syntax "po" "\.pot?$"
|
||||||
color green "^#.*$"
|
color green "^#.*$"
|
||||||
color yellow "Copyright|\(C\)"
|
color yellow "Copyright|\(C\)"
|
||||||
# Header fields.
|
# Header fields.
|
||||||
color brightmagenta "\<(Project\-Id\-Version|Report\-Msgid\-Bugs\-To|Last\-Translator|Language\-Team|Language|X\-Generator|Plural\-Forms)\>"
|
color brightmagenta "\<(Project\-Id\-Version|Report\-Msgid\-Bugs\-To|Last\-Translator|Language(\-Team)?|X\-Generator|Plural\-Forms)\>"
|
||||||
color cyan "\<(POT\-Creation\-Date|PO\-Revision\-Date|MIME\-Version|Content\-Type|Content\-Transfer\-Encoding)\>"
|
color cyan "\<(POT\-Creation\-Date|PO\-Revision\-Date|MIME\-Version|Content\-Type|Content\-Transfer\-Encoding)\>"
|
||||||
# Encodings and numbers.
|
# Encodings and numbers.
|
||||||
color yellow "\<(UTF|ISO|Windows|Mac|IBM)\>\-[0-9]"
|
color yellow "\<(UTF|ISO|Windows|Mac|IBM)\>\-[0-9]"
|
||||||
color yellow "[0-9]|pre[0-9]|[0-9]bit"
|
color yellow "[0-9]|pre[0-9]|[0-9]bit"
|
||||||
# Msgids.
|
# Msgids.
|
||||||
color brightblue "\<(msgid|msgid_plural|msgstr)\>"
|
color brightblue "^(msgid|msgid_plural|msgstr)\>"
|
||||||
# Tags.
|
# Tags.
|
||||||
color red "\<fuzzy\>"
|
color red " fuzzy(,|$)"
|
||||||
color yellow "\<c-format\>"
|
color yellow " (no-)?[-[:alpha:]]+-format(,|$)"
|
||||||
# Format specifiers.
|
# Format specifiers.
|
||||||
color brightmagenta "%([1-9]\$)?[a-z]*"
|
color brightmagenta "%([1-9]\$)?[a-z]*"
|
||||||
# Quotes and newlines.
|
# Quotes and newlines.
|
||||||
|
|
Loading…
Reference in New Issue