mirror of
git://git.sv.gnu.org/nano.git
synced 2024-12-14 06:47:11 +03:00
6a2032f5b0
This allows for commenting or uncommenting a line or a bunch of lines with a single keystroke (default binding: M-3). The characters used for commenting/uncommenting are specified by the active syntax file. Reviewed-by: Benno Schulenberg <bensberg@justemail.net> Signed-off-by: Mike Scalora <mike@scalora.org>
33 lines
553 B
Plaintext
33 lines
553 B
Plaintext
## Here is an example for Autoconf.
|
|
|
|
syntax "autoconf" "\.(ac|m4)$"
|
|
comment "#"
|
|
|
|
# Keywords:
|
|
color yellow "\<(if|test|then|elif|else|fi|for|in|do|done)\>"
|
|
color yellow "(=|!=|&&|\|\|)"
|
|
|
|
# Macros:
|
|
color cyan "\<[[:upper:]_[:digit:]]+\>"
|
|
|
|
# Version numbers:
|
|
color red "\<[-_.0-9]+\>"
|
|
|
|
# Strings:
|
|
color red "\"[^"]*\"" "\'[^']*\'"
|
|
|
|
# Backticks:
|
|
color green "`[^`]*`"
|
|
|
|
# Error lines:
|
|
color black "^\*\*\*.*"
|
|
|
|
# Brackets:
|
|
color magenta "\[|\]|\(|\)"
|
|
|
|
# Comments:
|
|
color blue "^[[:blank:]]*#.*" "\<dnl.*"
|
|
|
|
# Trailing whitespace:
|
|
color ,green "[[:space:]]+$"
|