mirror of
git://git.sv.gnu.org/nano.git
synced 2024-12-04 18:32:10 +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
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
## Here is an example for Emacs Lisp.
|
|
|
|
syntax "elisp" "\.el$"
|
|
comment ";"
|
|
|
|
# Basic functions/macros
|
|
color brightcyan "\<(if|when|unless|cond|and|or|lambda|let|progn|while|dolist|dotimes)\>"
|
|
color brightcyan "\<save-((window-)?excursion|restriction)\>"
|
|
color brightcyan "\<eval-(and|when)-compile\>"
|
|
# Defining functions
|
|
color brightcyan "\<def(un|macro|subst|generic|alias)\>"
|
|
color brightcyan "\<cl-def(un|macro|subst|generic|struct|type)\>"
|
|
color brightcyan "\<define-(derived|minor|generic)-mode\>"
|
|
# Defining variables
|
|
color brightcyan "\<def(class|const|var(-local|alias)?)\>"
|
|
# Customization functions
|
|
color brightcyan "\<def(custom|face|group|theme)\>"
|
|
# Setting values
|
|
color brightcyan "\<(setq(-default|-local)?|setf|push|pop|declare(-function)?)\>"
|
|
# Feature functions
|
|
color brightcyan "\<(require|provide)\>"
|
|
# Quoted symbols
|
|
color brightyellow "#?'\<(\w|-)+\>"
|
|
# Booleans
|
|
color brightred "\<(t|nil)\>"
|
|
# Keywords
|
|
color blue ":(\w|[?-])+"
|
|
# Strings
|
|
color yellow start="^[[:blank:]]+\"" end="[^\]\""
|
|
color yellow ""(\\.|[^"])*""
|
|
# Comments
|
|
color cyan "(^|[[:space:]]);.*$"
|