view syntax/hgqseries.vim @ 78:e42f813b4a39

Fixed some bugs with the `Hgqseries` window.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 17 Feb 2014 08:35:30 -0800
parents 1fbba48019b5
children
line wrap: on
line source

" Vim syntax file
" Language:     hg qseries 'augmented' output
" Maintainer:   Ludovic Chabant <ludovic@chabant.com>
" Filenames:    <none>

if exists("b:current_syntax")
    finish
endif

syn case match

syn match hgqseriesApplied      /^\*[^:]+: /
syn match hgqseriesUnapplied    /^[^\*].*: /

hi def link hgqseriesApplied    Identifier
hi def link hgqseriesUnapplied  Comment