1
0
forked from aniani/vim

updated for version 7.1b

This commit is contained in:
Bram Moolenaar 2007-05-10 17:56:19 +00:00
parent 933eb39d67
commit 2b64440353
5 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
*quotes.txt* For Vim version 7.1a. Last change: 2006 Apr 24 *quotes.txt* For Vim version 7.1b. Last change: 2006 Apr 24
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar

View File

@ -1,4 +1,4 @@
*sign.txt* For Vim version 7.1a. Last change: 2006 Apr 24 *sign.txt* For Vim version 7.1b. Last change: 2006 Apr 24
VIM REFERENCE MANUAL by Gordon Prieur VIM REFERENCE MANUAL by Gordon Prieur

View File

@ -1,4 +1,4 @@
*term.txt* For Vim version 7.1a. Last change: 2007 Feb 28 *term.txt* For Vim version 7.1b. Last change: 2007 Feb 28
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar

View File

@ -1,4 +1,4 @@
*usr_25.txt* For Vim version 7.1a. Last change: 2006 Jun 21 *usr_25.txt* For Vim version 7.1b. Last change: 2006 Jun 21
VIM USER MANUAL - by Bram Moolenaar VIM USER MANUAL - by Bram Moolenaar

View File

@ -1,7 +1,7 @@
" Vim syntax file " Vim syntax file
" Language: passwd(5) password file " Language: passwd(5) password file
" Maintainer: Nikolai Weibull <now@bitwi.se> " Maintainer: Nikolai Weibull <now@bitwi.se>
" Latest Revision: 2006-04-19 " Latest Revision: 2006-10-03
if exists("b:current_syntax") if exists("b:current_syntax")
finish finish
@ -12,7 +12,7 @@ set cpo&vim
syn match passwdBegin display '^' nextgroup=passwdAccount syn match passwdBegin display '^' nextgroup=passwdAccount
syn match passwdAccount contained display '[+-]\=[a-z_][a-z0-9_-]*' syn match passwdAccount contained display '[^:]\+'
\ nextgroup=passwdPasswordColon \ nextgroup=passwdPasswordColon
syn match passwdPasswordColon contained display ':' syn match passwdPasswordColon contained display ':'
@ -26,12 +26,12 @@ syn match passwdShadow contained display '[x*!]'
syn match passwdUIDColon contained display ':' nextgroup=passwdUID syn match passwdUIDColon contained display ':' nextgroup=passwdUID
syn match passwdUID contained display '\d*' syn match passwdUID contained display '\d\{0,10}'
\ nextgroup=passwdGIDColon \ nextgroup=passwdGIDColon
syn match passwdGIDColon contained display ':' nextgroup=passwdGID syn match passwdGIDColon contained display ':' nextgroup=passwdGID
syn match passwdGID contained display '\d*' syn match passwdGID contained display '\d\{0,10}'
\ nextgroup=passwdGecosColon \ nextgroup=passwdGecosColon
syn match passwdGecosColon contained display ':' nextgroup=passwdGecos syn match passwdGecosColon contained display ':' nextgroup=passwdGecos