mirror of
git://git.sv.gnu.org/nano.git
synced 2025-01-21 00:32:07 +03:00
bf88d27adc
* src/*: Introduce (basic) vim-style file locks. Does not allow vim to recover our files, and doesn't yet support setting the file as modified; just lets a vim user know we're editing a file. Commands line "-G" or "--locking", nanorc option "locking". New functions src/files.c:do_lockfile(), write_lockfile(), and delete_lockfile(). git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4549 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
17 lines
1.1 KiB
Plaintext
17 lines
1.1 KiB
Plaintext
## Here is an example for nanorc files.
|
|
##
|
|
syntax "nanorc" "\.?nanorc$"
|
|
## Possible errors and parameters
|
|
icolor brightwhite "^[[:space:]]*((un)?set|include|syntax|i?color).*$"
|
|
## Keywords
|
|
icolor brightgreen "^[[:space:]]*(set|unset)[[:space:]]+(allow_insecure_backup|autoindent|backup|backupdir|backwards|boldtext|brackets|casesensitive|const|cut|fill|historylog|matchbrackets|morespace|mouse|multibuffer|noconvert|nofollow|nohelp|nonewlines|nowrap|operatingdir|poslog|preserve|punct)\>" "^[[:space:]]*(set|unset)[[:space:]]+(quickblank|quotestr|rebinddelete|rebindkeypad|regexp|smarthome|smooth|softwrap|speller|suspend|suspendenable|tabsize|tabstospaces|tempfile|undo|view|whitespace|wordbounds|locking)\>"
|
|
icolor green "^[[:space:]]*(set|unset|include|syntax|header|magic)\>"
|
|
## Colors
|
|
icolor yellow "^[[:space:]]*i?color[[:space:]]*(bright)?(white|black|red|blue|green|yellow|magenta|cyan)?(,(white|black|red|blue|green|yellow|magenta|cyan))?\>"
|
|
icolor magenta "^[[:space:]]*i?color\>" "\<(start|end)="
|
|
## Strings
|
|
icolor white ""(\\.|[^"])*""
|
|
## Comments
|
|
icolor brightblue "^[[:space:]]*#.*$"
|
|
icolor cyan "^[[:space:]]*##.*$"
|