view ftplugin/hglog.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 ec0368535216
children
line wrap: on
line source

" Vim filetype plugin file
" Language:     hg log output
" Maintainer:   Ludovic Chabant <ludovic@chabant.com>

if exists("b:did_ftplugin")
  finish
endif
let b:did_ftplugin = 1

let s:cpo_save = &cpo
set cpo&vim

let b:undo_ftplugin = "setlocal cole< cocu<"

if has("conceal")
    setlocal cole=2 cocu=nc
endif

let &cpo = s:cpo_save
unlet s:cpo_save