aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/detect_background.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-01-21 23:38:04 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-01-21 23:38:04 +1300
commit76082ffecb2dbc0f12f11acfb561de886f42a983 (patch)
tree3de06ca0cc53dacac71f9b0beb858bfe12c3f079 /vim/autoload/detect_background.vim
parentMerge branch 'release/v0.24.0' into develop (diff)
parentSuspend 'C' from 'cpoptions' for sh syn extensions (diff)
downloaddotfiles-76082ffecb2dbc0f12f11acfb561de886f42a983.tar.gz
dotfiles-76082ffecb2dbc0f12f11acfb561de886f42a983.zip
Merge branch 'feature/vimrc-review' into develop
* feature/vimrc-review: Suspend 'C' from 'cpoptions' for sh syn extensions Join short-circuit line in detect_background.vim Break some continued lines in Vim indent files Remove 'mac' from 'fileformats' Tweak 'cpoptions' C flag instead of 'nocompatible' Remove a baseless assertion I made in a config Make entire syntax config dependent on load state Activate syntax settings conditionally
Diffstat (limited to 'vim/autoload/detect_background.vim')
-rw-r--r--vim/autoload/detect_background.vim3
1 files changed, 1 insertions, 2 deletions
diff --git a/vim/autoload/detect_background.vim b/vim/autoload/detect_background.vim
index c010dc53..e4163a43 100644
--- a/vim/autoload/detect_background.vim
+++ b/vim/autoload/detect_background.vim
@@ -9,8 +9,7 @@
" Author: Tom Ryder <tom@sanctum.geek.nz>
" License: Same as Vim itself
"
-if exists('g:loaded_detect_background')
- \ || &compatible
+if exists('g:loaded_detect_background') || &compatible
finish
endif
let g:loaded_detect_background = 1