mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 19:25:11 -07:00
a98a6996c2
Vim runtime files based on 7.4.384 / hg changeset 7090d7f160f7 Excluding: Amiga icons (*.info, icons/) doc/hangulin.txt tutor/ spell/ lang/ (only used for menu translations) macros/maze/, macros/hanoi/, macros/life/, macros/urm/ These were used to test vi compatibility. termcap "Demonstration of a termcap file (for the Amiga and Archimedes)" Helped-by: Rich Wareham <rjw57@cam.ac.uk> Helped-by: John <john.schmidt.h@gmail.com> Helped-by: Yann <yann@yann-salaun.com> Helped-by: Christophe Badoit <c.badoit@lesiteimmo.com> Helped-by: drasill <github@tof2k.com> Helped-by: Tae Sandoval Murgan <taecilla@gmail.com> Helped-by: Lowe Thiderman <lowe.thiderman@gmail.com>
36 lines
1.3 KiB
VimL
36 lines
1.3 KiB
VimL
" Vim syntax file
|
|
" Language: Debian sources.list
|
|
" Maintainer: Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
|
|
" Former Maintainer: Matthijs Mohlmann <matthijs@cacholong.nl>
|
|
" Last Change: 2014 Jul 11
|
|
" URL: http://anonscm.debian.org/hg/pkg-vim/vim/raw-file/unstable/runtime/syntax/debsources.vim
|
|
|
|
" Standard syntax initialization
|
|
if version < 600
|
|
syntax clear
|
|
elseif exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
" case sensitive
|
|
syn case match
|
|
|
|
" A bunch of useful keywords
|
|
syn match debsourcesKeyword /\(deb-src\|deb\|main\|contrib\|non-free\|restricted\|universe\|multiverse\)/
|
|
|
|
" Match comments
|
|
syn match debsourcesComment /#.*/ contains=@Spell
|
|
|
|
" Match uri's
|
|
syn match debsourcesUri +\(http://\|ftp://\|[rs]sh://\|debtorrent://\|\(cdrom\|copy\|file\):\)[^' <>"]\++
|
|
syn match debsourcesDistrKeyword +\([[:alnum:]_./]*\)\(squeeze\|wheezy\|jessie\|\(old\)\=stable\|testing\|unstable\|sid\|rc-buggy\|experimental\|devel\|lucid\|precise\|trusty\|utopic\)\([-[:alnum:]_./]*\)+
|
|
|
|
" Associate our matches and regions with pretty colours
|
|
hi def link debsourcesLine Error
|
|
hi def link debsourcesKeyword Statement
|
|
hi def link debsourcesDistrKeyword Type
|
|
hi def link debsourcesComment Comment
|
|
hi def link debsourcesUri Constant
|
|
|
|
let b:current_syntax = "debsources"
|