From c9d2473d5d41bbeec53004ab9b2ebbd5b2eeaf76 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 21 Feb 2023 21:47:47 +0300 Subject: [PATCH] =?UTF-8?q?refactor:=20Use=20robust=20operators=20`=3D=3D#?= =?UTF-8?q?`=20or=20`=3D=3D=3F`=20instead=20of=20`=3D=3D`?= --- autoload/indent_guides.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/indent_guides.vim b/autoload/indent_guides.vim index 7b739c3..23afb29 100644 --- a/autoload/indent_guides.vim +++ b/autoload/indent_guides.vim @@ -285,7 +285,7 @@ endfunction " function! indent_guides#exclude_filetype() abort if exists('g:indent_guides_exclude_buftype') - if g:indent_guides_exclude_buftype && &buftype != '' + if g:indent_guides_exclude_buftype && &buftype !=# '' return 1 endif endif