3644d51b97
The 'tabgives' command is syntax-specific and should be followed by a string containing the character(s) that a single press of the <Tab> key should produce -- most likely a single TAB or a small bunch of spaces, but any string is allowed. This overrides the 'tabstospaces' option. When one wants to make sure <Tab> inserts always four spaces and never a TAB when editing a Python file, one could add to one's nanorc: extendsyntax python tabgives " " where there are four spaces between the quotes. And when one wants to ensure, when editing a Makefile, that <Tab> always inserts a TAB and never spaces, independent of what tabstospaces is set to, one could add to one's nanorc: extendsyntax makefile tabgives " " where there is a literal TAB character between the quotes. This fulfills https://savannah.gnu.org/bugs/?53661, Requested-by: Andrew Pennebaker <andrew.pennebaker@gmail.com> And addresses https://savannah.gnu.org/bugs/?54760. Requested-by: Henry van Megen <hvanmegen@gmail.com> And addresses part of https://savannah.gnu.org/bugs/?54775. Requested-by: Dirkjan Ochtman <dirkjan@ochtman.nl>
33 строки
2.8 KiB
Plaintext
33 строки
2.8 KiB
Plaintext
## Here is an example for nanorc files.
|
|
|
|
syntax nanorc "\.?nanorc$"
|
|
comment "#"
|
|
|
|
# Possible errors and parameters
|
|
icolor brightred "^[[:space:]]*((un)?(bind|set)|include|syntax|header|magic|comment|linter|tabgives|i?color|extendsyntax).*"
|
|
|
|
# Keywords
|
|
icolor brightgreen "^[[:space:]]*(set|unset)[[:space:]]+(afterends|allow_insecure_backup|atblanks|autoindent|backup|backwards|boldtext|breaklonglines|casesensitive|constantshow|cutfromcursor|emptyline|finalnewline|historylog|jumpyscrolling|linenumbers|locking|morespace|mouse|multibuffer|noconvert|nohelp|nopauses|nonewlines|nowrap|positionlog|preserve|quickblank|quiet|rebinddelete|rebindkeypad|regexp|showcursor|smarthome|smooth|softwrap|suspend|tabstospaces|tempfile|trimblanks|unix|view|wordbounds|zap)\>"
|
|
icolor yellow "^[[:space:]]*set[[:space:]]+((error|function|key|number|selected|status|stripe|title)color)[[:space:]]+(bright)?(white|black|red|blue|green|yellow|magenta|cyan|normal)?(,(white|black|red|blue|green|yellow|magenta|cyan|normal))?\>"
|
|
icolor brightgreen "^[[:space:]]*set[[:space:]]+(backupdir|brackets|errorcolor|functioncolor|keycolor|matchbrackets|numbercolor|operatingdir|punct|quotestr|selectedcolor|speller|statuscolor|stripecolor|titlecolor|whitespace|wordchars)[[:space:]]+"
|
|
icolor brightgreen "^[[:space:]]*set[[:space:]]+(fill[[:space:]]+-?[[:digit:]]+|(guidestripe|tabsize)[[:space:]]+[1-9][0-9]*)\>"
|
|
icolor brightgreen "^[[:space:]]*bind[[:space:]]+((\^([[:alpha:]]|[]@\^_]|Space)|M-([[:alpha:]]|[]!"#$%&'()*+,./0-9:;<=>?@\^_`{|}~-]|Space))|F([1-9]|1[0-6])|Ins|Del)[[:space:]]+([[:alpha:]]+|".*")[[:space:]]+(all|main|search|replace(with)?|yesno|gotoline|writeout|insert|ext(ernal)?cmd|help|spell|linter|browser|whereisfile|gotodir)([[:space:]]+#|[[:space:]]*$)"
|
|
icolor brightgreen "^[[:space:]]*unbind[[:space:]]+((\^([[:alpha:]]|[]@\^_]|Space)|M-([[:alpha:]]|[]!"#$%&'()*+,./0-9:;<=>?@\^_`{|}~-]|Space))|F([1-9]|1[0-6])|Ins|Del)[[:space:]]+(all|main|search|replace(with)?|yesno|gotoline|writeout|insert|ext(ernal)?cmd|help|spell|linter|browser|whereisfile|gotodir)([[:space:]]+#|[[:space:]]*$)"
|
|
icolor brightgreen "^[[:space:]]*extendsyntax[[:space:]]+[[:alpha:]]+[[:space:]]+(i?color|header|magic|comment|linter|tabgives)[[:space:]]+.*"
|
|
icolor brightgreen "^[[:space:]]*(syntax|linter)[[:space:]]+[^[:blank:]]+"
|
|
icolor green "^[[:space:]]*((un)?(bind|set)|include|syntax|header|magic|comment|linter|tabgives|extendsyntax)\>"
|
|
|
|
# Strings
|
|
color brightmagenta "([[:space:]]|(start|end)=)".+"([[:space:]]|$)"
|
|
|
|
# Colors
|
|
icolor yellow "^[[:space:]]*i?color[[:space:]]*(bright)?(white|black|red|blue|green|yellow|magenta|cyan|normal)?(,(white|black|red|blue|green|yellow|magenta|cyan|normal))?\>"
|
|
icolor magenta "^[[:space:]]*i?color\>" "\<(start|end)="
|
|
|
|
# Comments
|
|
color brightblue "(^|[[:space:]]+)#.*"
|
|
color cyan "^[[:space:]]*##.*"
|
|
|
|
# Trailing whitespace
|
|
color ,green "[[:space:]]+$"
|