aboutsummaryrefslogtreecommitdiffstats
path: root/bundle/diff-corrections/plugin/diff_corrections.vim
blob: 2cf3abfd4d76b5e651b3bf23936ed63cd7057cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if exists('g:loaded_diff_corrections') || !has('lambda')
	finish
endif
let g:loaded_diff_corrections = 1


augroup diff_corrections
	autocmd!

	autocmd BufEnter * call diff_corrections#Run()
augroup END


set tabpagemax=200