view syntax/hgqseries.vim @ 75:066c8654e754

Reverted some automatic `Hgstatus` window refresh. Apparently Vim doesn't like what I'm doing. Sigh.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 16 Feb 2014 23:52:29 -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