annotate syntax/hgqseries.vim @ 149:5e72afea669c
Fix :Hgvdiff with a file that is a copy.
Previously,
:Hg rename old new
:" (A rename is a copy and a deletion of the file with the old name.)
:edit new
:Hgvdiff
" "new: no such file in rev NNNN" was displayed in the window to the right of the new vertical split.
Now :Hgvdiff diffs new with old from the head revision.
author |
Shane Harper <shane@shaneharper.net> |
date |
Sat, 08 Feb 2020 20:52:39 +1100 |
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
|