annotate resources/hg_command_file_types.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 b484fe88c500
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
46
6a4f5200d8da `:Hg!` command changes:
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
1 " LAWRENCIUM - MERCURIAL COMMANDS FILE TYPES
6a4f5200d8da `:Hg!` command changes:
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
2 "
6a4f5200d8da `:Hg!` command changes:
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
3 if !exists('g:lawrencium_hg_commands_file_types')
50
b484fe88c500 Fixed a bug initializing global setting.
Ludovic Chabant <ludovic@chabant.com>
parents: 46
diff changeset
4 let g:lawrencium_hg_commands_file_types = {}
46
6a4f5200d8da `:Hg!` command changes:
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
5 endif
6a4f5200d8da `:Hg!` command changes:
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
6
6a4f5200d8da `:Hg!` command changes:
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
7 let g:lawrencium_hg_commands_file_types.diff = 'diff'
6a4f5200d8da `:Hg!` command changes:
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
8 let g:lawrencium_hg_commands_file_types.glog = 'hggraphlog'
6a4f5200d8da `:Hg!` command changes:
Ludovic Chabant <ludovic@chabant.com>
parents:
diff changeset
9