aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/after/ftplugin/sh.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/after/ftplugin/sh.vim b/vim/after/ftplugin/sh.vim
index e872844d..2f333cb5 100644
--- a/vim/after/ftplugin/sh.vim
+++ b/vim/after/ftplugin/sh.vim
@@ -3,7 +3,7 @@
let g:sh_isk='@,48-57,_,192-255,.,/'
" Use han(1) as a man(1) wrapper for Bash files if available
-if exists("b:is_bash") && executable('han')
+if exists('b:is_bash') && executable('han')
setlocal keywordprg=han
endif