Mercurial > vim-lawrencium
comparison syntax/hgqseries.vim @ 71:1fbba48019b5
MQ support:
- Added `Hgqseries` command to navigate MQ series.
- Ability to go to, rename, and edit the message of a patch.
- Wrote documentation.
Fixed a bug with the `Hgstatus` being `readonly`.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 16 Feb 2014 16:00:16 -0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
70:16e873b2a4a8 | 71:1fbba48019b5 |
---|---|
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 |