Mercurial > vim-lawrencium
comparison ftplugin/hglog.vim @ 54:ec0368535216
Moving `hglog` file type plugin to `ftplugin` directory where it belongs.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 11 Nov 2012 10:36:13 -0800 |
parents | plugin/hglog.vim@b7caa6693c39 |
children |
comparison
equal
deleted
inserted
replaced
53:b7caa6693c39 | 54:ec0368535216 |
---|---|
1 " Vim filetype plugin file | |
2 " Language: hg log output | |
3 " Maintainer: Ludovic Chabant <ludovic@chabant.com> | |
4 | |
5 if exists("b:did_ftplugin") | |
6 finish | |
7 endif | |
8 let b:did_ftplugin = 1 | |
9 | |
10 let s:cpo_save = &cpo | |
11 set cpo&vim | |
12 | |
13 let b:undo_ftplugin = "setlocal cole< cocu<" | |
14 | |
15 if has("conceal") | |
16 setlocal cole=2 cocu=nc | |
17 endif | |
18 | |
19 let &cpo = s:cpo_save | |
20 unlet s:cpo_save |