clamsyntax/pacman.vim @ ad458d7e3e8d

Add syntax support for the ls command (from Ümit Kablan).
author Steve Losh <steve@stevelosh.com>
date Sat, 08 Sep 2012 14:01:49 -0400
parents (none)
children 34dccad2239d
" pacman program output syntax rules for Clam.vim

" syn match outputItemLineFirst "\^\S\+/\.\+\>"
syn match packageName "/\S\+\>"

syn keyword packageGroupExtra extra
syn keyword packageGroupCommunity community
syn keyword packageGroupMultilib multilib
syn keyword packageInstalledMark installed


hi def link packageGroupCommunity Type
hi def link packageGroupExtra     Type
hi def link packageGroupMultilib  Type
hi def link packageInstalledMark  Error
hi def link packageName           String
" hi def link outputItemLineFirst Comment