diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-06 09:51:09 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-11-06 09:51:09 +1300 |
commit | 9927b230dd5ae7004f4d14ea9f684d06cd11a856 (patch) | |
tree | 89411d24bbfbd4058cb78b9e24cc177530659ced /vim/autoload | |
parent | Don't overwrite plugin-specified user commands (diff) | |
download | dotfiles-9927b230dd5ae7004f4d14ea9f684d06cd11a856.tar.gz dotfiles-9927b230dd5ae7004f4d14ea9f684d06cd11a856.zip |
Don't use VimL ==# for number comparisons
The Google VimScript Guide says:
<https://google.github.io/styleguide/vimscriptfull.xml#Portability>
> Always use case-explicit operators for strings (=~# and =~?, never =~).
>
> This also applies to !~ == != > >= < and <=
> This only applies for strings. == and >= are fine for numbers, but ==#
> and >=# must be used for strings.
Diffstat (limited to 'vim/autoload')
-rw-r--r-- | vim/autoload/detect_background.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/autoload/detect_background.vim b/vim/autoload/detect_background.vim index 9758f8d3..c010dc53 100644 --- a/vim/autoload/detect_background.vim +++ b/vim/autoload/detect_background.vim @@ -28,8 +28,8 @@ function! detect_background#DetectBackground() abort " Choose the background setting based on this value if l:bg ==# 'default' - \ || l:bg ==# '7' - \ || l:bg ==# '15' + \ || l:bg == 7 + \ || l:bg == 15 return 'light' else return 'dark' |