view syntax/hgqseries.vim @ 95:d38be34b403b

`Hgannotate` improvements. * `Hgwannotate` opens a wide/verbose version of annotations. * Both commands can take a filename to open first.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 23 Jul 2014 21:39:41 -0700
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