Mercurial > hg > RemoteEditor > vim7
comparison runtime/syntax/fstab.vim @ 39:c16898406ff2
synchorinize version 7.3.081
author | one@zeus.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Fri, 17 Dec 2010 17:43:06 +0900 |
parents | e170173ecb68 |
children |
comparison
equal
deleted
inserted
replaced
38:e06a1cd7230d | 39:c16898406ff2 |
---|---|
1 " Vim syntax file | 1 " Vim syntax file |
2 " Language: fstab file | 2 " Language: fstab file |
3 " Maintaner: Radu Dineiu <radu.dineiu@gmail.com> | 3 " Maintaner: Radu Dineiu <radu.dineiu@gmail.com> |
4 " URL: http://ld.yi.org/vim/fstab.vim | 4 " URL: http://ld.yi.org/vim/fstab.vim |
5 " Last Change: 2008 Jan 16 | 5 " Last Change: 2009 Feb 04 |
6 " Version: 0.92 | 6 " Version: 0.93 |
7 " | 7 " |
8 " Credits: | 8 " Credits: |
9 " David Necas (Yeti) <yeti@physics.muni.cz> | 9 " David Necas (Yeti) <yeti@physics.muni.cz> |
10 " Stefano Zacchiroli <zack@debian.org> | 10 " Stefano Zacchiroli <zack@debian.org> |
11 " Georgi Georgiev <chutz@gg3.net> | 11 " Georgi Georgiev <chutz@gg3.net> |
12 " James Vega <jamessan@debian.org> | 12 " James Vega <jamessan@debian.org> |
13 " Elias Probst <mail@eliasprobst.eu> | |
13 " | 14 " |
14 " Options: | 15 " Options: |
15 " let fstab_unknown_fs_errors = 1 | 16 " let fstab_unknown_fs_errors = 1 |
16 " highlight unknown filesystems as errors | 17 " highlight unknown filesystems as errors |
17 | 18 |
44 syn keyword fsMountPointKeyword contained none swap | 45 syn keyword fsMountPointKeyword contained none swap |
45 | 46 |
46 " Type | 47 " Type |
47 syn cluster fsTypeCluster contains=fsTypeKeyword,fsTypeUnknown | 48 syn cluster fsTypeCluster contains=fsTypeKeyword,fsTypeUnknown |
48 syn match fsTypeUnknown /\s\+\zs\w\+/ contained | 49 syn match fsTypeUnknown /\s\+\zs\w\+/ contained |
49 syn keyword fsTypeKeyword contained adfs ados affs atfs audiofs auto autofs befs bfs cd9660 cfs cifs coda cramfs devfs devpts e2compr efs ext2 ext2fs ext3 fdesc ffs filecore fuse hfs hpfs iso9660 jffs jffs2 jfs kernfs lfs linprocfs mfs minix msdos ncpfs nfs none ntfs null nwfs overlay ovlfs portal proc procfs ptyfs qnx4 reiserfs romfs shm smbfs sshfs std subfs swap sysfs sysv tcfs tmpfs udf ufs umap umsdos union usbfs userfs vfat vs3fs vxfs wrapfs wvfs xfs zisofs | 50 syn keyword fsTypeKeyword contained adfs ados affs atfs audiofs auto autofs befs bfs cd9660 cfs cifs coda cramfs devfs devpts e2compr efs ext2 ext2fs ext3 ext4 fdesc ffs filecore fuse hfs hpfs iso9660 jffs jffs2 jfs kernfs lfs linprocfs mfs minix msdos ncpfs nfs none ntfs null nwfs overlay ovlfs portal proc procfs ptyfs qnx4 reiserfs romfs shm smbfs sshfs std subfs swap sysfs sysv tcfs tmpfs udf ufs umap umsdos union usbfs userfs vfat vs3fs vxfs wrapfs wvfs xfs zisofs |
50 | 51 |
51 " Options | 52 " Options |
52 " ------- | 53 " ------- |
53 " Options: General | 54 " Options: General |
54 syn cluster fsOptionsCluster contains=fsOperator,fsOptionsGeneral,fsOptionsKeywords,fsTypeUnknown | 55 syn cluster fsOptionsCluster contains=fsOperator,fsOptionsGeneral,fsOptionsKeywords,fsTypeUnknown |
89 syn match fsOptionsKeywords contained /\<journal=/ nextgroup=fsOptionsExt3Journal | 90 syn match fsOptionsKeywords contained /\<journal=/ nextgroup=fsOptionsExt3Journal |
90 syn match fsOptionsKeywords contained /\<data=/ nextgroup=fsOptionsExt3Data | 91 syn match fsOptionsKeywords contained /\<data=/ nextgroup=fsOptionsExt3Data |
91 syn match fsOptionsKeywords contained /\<commit=/ nextgroup=fsOptionsNumber | 92 syn match fsOptionsKeywords contained /\<commit=/ nextgroup=fsOptionsNumber |
92 syn keyword fsOptionsExt3Journal contained update inum | 93 syn keyword fsOptionsExt3Journal contained update inum |
93 syn keyword fsOptionsExt3Data contained journal ordered writeback | 94 syn keyword fsOptionsExt3Data contained journal ordered writeback |
94 syn keyword fsOptionsKeywords contained noload | 95 syn keyword fsOptionsKeywords contained noload user_xattr nouser_xattr acl noacl |
96 | |
97 " Options: ext4 | |
98 syn match fsOptionsKeywords contained /\<journal=/ nextgroup=fsOptionsExt4Journal | |
99 syn match fsOptionsKeywords contained /\<data=/ nextgroup=fsOptionsExt4Data | |
100 syn match fsOptionsKeywords contained /\<barrier=/ nextgroup=fsOptionsExt4Barrier | |
101 syn match fsOptionsKeywords contained /\<journal_dev=/ nextgroup=fsOptionsNumber | |
102 syn match fsOptionsKeywords contained /\<resuid=/ nextgroup=fsOptionsNumber | |
103 syn match fsOptionsKeywords contained /\<resgid=/ nextgroup=fsOptionsNumber | |
104 syn match fsOptionsKeywords contained /\<sb=/ nextgroup=fsOptionsNumber | |
105 syn match fsOptionsKeywords contained /\<commit=/ nextgroup=fsOptionsNumber | |
106 syn keyword fsOptionsExt4Journal contained update inum | |
107 syn keyword fsOptionsExt4Data contained journal ordered writeback | |
108 syn match fsOptionsExt4Barrier /[0-1]/ | |
109 syn keyword fsOptionsKeywords contained noload extents orlov oldalloc user_xattr nouser_xattr acl noacl reservation noreservation bsddf minixdf check=none nocheck debug grpid nogroupid sysvgroups bsdgroups quota noquota grpquota usrquota bh nobh | |
95 | 110 |
96 " Options: fat | 111 " Options: fat |
97 syn match fsOptionsKeywords contained /\<blocksize=/ nextgroup=fsOptionsSize | 112 syn match fsOptionsKeywords contained /\<blocksize=/ nextgroup=fsOptionsSize |
98 syn match fsOptionsKeywords contained /\<\%([dfu]mask\|codepage\)=/ nextgroup=fsOptionsNumberOctal | 113 syn match fsOptionsKeywords contained /\<\%([dfu]mask\|codepage\)=/ nextgroup=fsOptionsNumberOctal |
99 syn match fsOptionsKeywords contained /\%(cvf_\%(format\|option\)\|iocharset\)=/ nextgroup=fsOptionsString | 114 syn match fsOptionsKeywords contained /\%(cvf_\%(format\|option\)\|iocharset\)=/ nextgroup=fsOptionsString |
239 HiLink fsOptionsSize Number | 254 HiLink fsOptionsSize Number |
240 HiLink fsOptionsExt2Check String | 255 HiLink fsOptionsExt2Check String |
241 HiLink fsOptionsExt2Errors String | 256 HiLink fsOptionsExt2Errors String |
242 HiLink fsOptionsExt3Journal String | 257 HiLink fsOptionsExt3Journal String |
243 HiLink fsOptionsExt3Data String | 258 HiLink fsOptionsExt3Data String |
259 HiLink fsOptionsExt4Journal String | |
260 HiLink fsOptionsExt4Data String | |
261 HiLink fsOptionsExt4Barrier Number | |
244 HiLink fsOptionsFatCheck String | 262 HiLink fsOptionsFatCheck String |
245 HiLink fsOptionsConv String | 263 HiLink fsOptionsConv String |
246 HiLink fsOptionsFatType Number | 264 HiLink fsOptionsFatType Number |
247 HiLink fsOptionsYesNo String | 265 HiLink fsOptionsYesNo String |
248 HiLink fsOptionsHpfsCase String | 266 HiLink fsOptionsHpfsCase String |