annotate syntax/hgqseries.vim @ 126:47209552ec46
Shellescaped all command arguments in HgRepo.GetCommand,
so that the commands work properly with ugly file names,
in my case containing parentheses.
Wrapping revision arguments in quotes is no longer necessary,
so removed all of that as well.
author |
namark <nshan.nnnn@gmail.com> |
date |
Wed, 02 Dec 2015 22:45:12 +0400 |
parents |
1fbba48019b5 |
children |
|
rev |
line source |
71
|
1 " Vim syntax file
|
|
2 " Language: hg qseries 'augmented' output
|
|
3 " Maintainer: Ludovic Chabant <ludovic@chabant.com>
|
|
4 " Filenames: <none>
|
|
5
|
|
6 if exists("b:current_syntax")
|
|
7 finish
|
|
8 endif
|
|
9
|
|
10 syn case match
|
|
11
|
|
12 syn match hgqseriesApplied /^\*[^:]+: /
|
|
13 syn match hgqseriesUnapplied /^[^\*].*: /
|
|
14
|
|
15 hi def link hgqseriesApplied Identifier
|
|
16 hi def link hgqseriesUnapplied Comment
|
|
17
|