diff options
| author | Teddy Wing | 2019-05-11 00:02:59 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2019-05-11 00:02:59 +0200 | 
| commit | 4f2dc2a1692568deb65b677188d38d666cbd469d (patch) | |
| tree | 3f5b6ec8b311227bb26cc01fac6a6f2cb928f0c0 /bundle/diff-corrections/plugin | |
| parent | e4a1cf9aa0d4cefcd8d54bfab724c77f92299e5c (diff) | |
| download | dotvim-4f2dc2a1692568deb65b677188d38d666cbd469d.tar.bz2 | |
diff-corrections: Move corrections to `autoload`
Makes the code a little nicer and more extensible without the line
continuations.
Only change the highlight colour for the 'twilight256' colour scheme.
Diffstat (limited to 'bundle/diff-corrections/plugin')
| -rw-r--r-- | bundle/diff-corrections/plugin/diff_corrections.vim | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/bundle/diff-corrections/plugin/diff_corrections.vim b/bundle/diff-corrections/plugin/diff_corrections.vim index c3dd8bc..858537e 100644 --- a/bundle/diff-corrections/plugin/diff_corrections.vim +++ b/bundle/diff-corrections/plugin/diff_corrections.vim @@ -1,8 +1,5 @@  augroup diff_corrections  	autocmd! -	autocmd BufEnter * if &diff -		\| highlight Comment ctermfg=7 -		\| set nocursorline -	\| endif +	autocmd BufEnter * call diff_corrections#Run()  augroup END | 
