aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-10-21 16:03:43 +1300
committerTom Ryder <tom@sanctum.geek.nz>2015-10-21 16:03:43 +1300
commit22340127831e1c305436783c313be243b8b8eefd (patch)
treed5edaa0a1f392dd4abb096b7e9e26ff894f60767
parentConsistent comments (diff)
downloaddotfiles-22340127831e1c305436783c313be243b8b8eefd.tar.gz
dotfiles-22340127831e1c305436783c313be243b8b8eefd.zip
Consistent quoting
-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