view syntax/hgqseries.vim @ 143:4aedee2ce476

Allow passing extra arguments to Hglogthis and Hgvlogthis * This allows for example :Hglogthis --follow and :Hglogthis -l 5
author Johan Norberg <norberg_johan@hotmail.com>
date Mon, 29 Oct 2018 18:51:58 +0100
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