diff options
| author | Teddy Wing | 2019-05-17 22:51:58 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2019-05-17 22:51:58 +0200 | 
| commit | b2f94159f0cd922259847727b917a6271a4b6be3 (patch) | |
| tree | c3540b38a36f7cc876da150e007ca1fa2584ac69 | |
| parent | d389fdd35788385415dc972dd5c4ef7dcb3448c0 (diff) | |
| download | dotvim-b2f94159f0cd922259847727b917a6271a4b6be3.tar.bz2 | |
diff-corrections/plugin: Add load guard
| -rw-r--r-- | bundle/diff-corrections/plugin/diff_corrections.vim | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/bundle/diff-corrections/plugin/diff_corrections.vim b/bundle/diff-corrections/plugin/diff_corrections.vim index 56b7ec3..fe7f337 100644 --- a/bundle/diff-corrections/plugin/diff_corrections.vim +++ b/bundle/diff-corrections/plugin/diff_corrections.vim @@ -1,3 +1,9 @@ +if exists('g:loaded_diff_corrections') +	finish +endif +let g:loaded_diff_corrections = 1 + +  augroup diff_corrections  	autocmd! | 
