Mercurial > vim-lawrencium
view ftplugin/hglog.vim @ 65:e8f252a7ed9e
Made the `Hglog` window use Lawrencium buffers:
- Added support for `hg log` with Lawrencium paths.
- Fixed some bugs with `delete_dependency_buffers`.
Miscellaneous:
- Added support for `BufWinLeave` and `BufUnload` on buffer objects.
- Added some comments.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sat, 24 Nov 2012 08:50:30 -0800 |
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