view syntax/hgqseries.vim @ 105:fc5ffa4614b4

Infrastructure improvements - Ability to store temp files in a `.hg/lawrencium` folder. - More methods/options for `Buffer`. - Fix a bug with `Buffer.SetVar`.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 15 Aug 2014 17:05:14 -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