view syntax/hgqseries.vim @ 112:b051b81cc365

Fix double escaping when Lawrencium is stored in a folder with spaces. Kudos to Gareth Phillips for pointing out the solution :)
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 10 Dec 2014 21:50:48 -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