blob: fe7f33739014c92ce2de5a25d85b95af79371725 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if exists('g:loaded_diff_corrections')
finish
endif
let g:loaded_diff_corrections = 1
augroup diff_corrections
autocmd!
autocmd BufEnter * call diff_corrections#Run()
augroup END
set tabpagemax=200
|