diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/syntax/hgqseries.vim	Sun Feb 16 16:00:16 2014 -0800
@@ -0,0 +1,17 @@
+" 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
+