aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/zsh.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/zsh.vim')
-rw-r--r--vim/after/ftplugin/zsh.vim8
1 files changed, 3 insertions, 5 deletions
diff --git a/vim/after/ftplugin/zsh.vim b/vim/after/ftplugin/zsh.vim
index 8a27846b..49736401 100644
--- a/vim/after/ftplugin/zsh.vim
+++ b/vim/after/ftplugin/zsh.vim
@@ -1,11 +1,9 @@
" Extra configuration for Z shell scripts
-if &filetype != 'zsh' || &compatible || v:version < 700
+if &filetype !=# 'zsh' || v:version < 700 || &compatible
finish
endif
" Use Z shell itself as a syntax checker
compiler zsh
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|unlet b:current_compiler'
- \ . '|setlocal errorformat<'
- \ . '|setlocal makeprg<'
+let b:undo_ftplugin .= '|unlet b:current_compiler'
+ \ . '|setlocal errorformat< makeprg<'