view syntax/hgqseries.vim @ 144:62af332fbf4a

Add options completion for `Hglog` and `Hglogthis`.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 03 Nov 2018 18:57:53 -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