comparison runtime/syntax/debchangelog.vim @ 10617:9a75c8a1b8b1

Update runtime files. commit https://github.com/vim/vim/commit/369b6f57c426b4bf39b4a0cac8d21ed1b5f7de4d Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 17 12:22:32 2017 +0100 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 17 Jan 2017 12:30:05 +0100
parents 46763b01cd9a
children 63b0b7b79b25
comparison
equal deleted inserted replaced
10616:db8a2a027ef7 10617:9a75c8a1b8b1
1 " Vim syntax file 1 " Vim syntax file
2 " Language: Debian changelog files 2 " Language: Debian changelog files
3 " Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org> 3 " Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
4 " Former Maintainers: Gerfried Fuchs <alfie@ist.org> 4 " Former Maintainers: Gerfried Fuchs <alfie@ist.org>
5 " Wichert Akkerman <wakkerma@debian.org> 5 " Wichert Akkerman <wakkerma@debian.org>
6 " Last Change: 2016 Aug 30 6 " Last Change: 2016 Nov 12
7 " URL: https://anonscm.debian.org/cgit/pkg-vim/vim.git/plain/runtime/syntax/debchangelog.vim 7 " URL: https://anonscm.debian.org/cgit/pkg-vim/vim.git/plain/runtime/syntax/debchangelog.vim
8 8
9 " Standard syntax initialization 9 " Standard syntax initialization
10 if exists("b:current_syntax") 10 if exists("b:current_syntax")
11 finish 11 finish
19 19
20 " Define some common expressions we can use later on 20 " Define some common expressions we can use later on
21 syn match debchangelogName contained "^[[:alnum:]][[:alnum:].+-]\+ " 21 syn match debchangelogName contained "^[[:alnum:]][[:alnum:].+-]\+ "
22 exe 'syn match debchangelogFirstKV contained "; \('.urgency.'\|'.binNMU.'\)"' 22 exe 'syn match debchangelogFirstKV contained "; \('.urgency.'\|'.binNMU.'\)"'
23 exe 'syn match debchangelogOtherKV contained ", \('.urgency.'\|'.binNMU.'\)"' 23 exe 'syn match debchangelogOtherKV contained ", \('.urgency.'\|'.binNMU.'\)"'
24 syn match debchangelogTarget contained "\v %(frozen|unstable|sid|%(testing|%(old)=stable)%(-proposed-updates|-security)=|experimental|squeeze-%(backports%(-sloppy)=|volatile|lts|security)|wheezy-%(backports%(-sloppy)=|security)|jessie%(-backports|-security)=|stretch|%(devel|precise|trusty|vivid|wily|xenial|yakkety)%(-%(security|proposed|updates|backports|commercial|partner))=)+" 24 syn match debchangelogTarget contained "\v %(frozen|unstable|sid|%(testing|%(old)=stable)%(-proposed-updates|-security)=|experimental|squeeze-%(backports%(-sloppy)=|volatile|lts|security)|wheezy-%(backports%(-sloppy)=|security)|jessie%(-backports|-security)=|stretch|%(devel|precise|trusty|vivid|wily|xenial|yakkety|zesty)%(-%(security|proposed|updates|backports|commercial|partner))=)+"
25 syn match debchangelogVersion contained "(.\{-})" 25 syn match debchangelogVersion contained "(.\{-})"
26 syn match debchangelogCloses contained "closes:\_s*\(bug\)\=#\=\_s\=\d\+\(,\_s*\(bug\)\=#\=\_s\=\d\+\)*" 26 syn match debchangelogCloses contained "closes:\_s*\(bug\)\=#\=\_s\=\d\+\(,\_s*\(bug\)\=#\=\_s\=\d\+\)*"
27 syn match debchangelogLP contained "\clp:\s\+#\d\+\(,\s*#\d\+\)*" 27 syn match debchangelogLP contained "\clp:\s\+#\d\+\(,\s*#\d\+\)*"
28 syn match debchangelogEmail contained "[_=[:alnum:].+-]\+@[[:alnum:]./\-]\+" 28 syn match debchangelogEmail contained "[_=[:alnum:].+-]\+@[[:alnum:]./\-]\+"
29 syn match debchangelogEmail contained "<.\{-}>" 29 syn match debchangelogEmail contained "<.\{-}>"