aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/awk.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/awk.vim')
-rw-r--r--vim/after/ftplugin/awk.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/vim/after/ftplugin/awk.vim b/vim/after/ftplugin/awk.vim
index 42b3e1db..6a8ac1ac 100644
--- a/vim/after/ftplugin/awk.vim
+++ b/vim/after/ftplugin/awk.vim
@@ -1,11 +1,9 @@
" Extra configuration for AWK scripts
-if &filetype != 'awk' || &compatible || v:version < 700
+if &filetype !=# 'awk' || v:version < 700
finish
endif
" Set comment formats
setlocal comments=:#
setlocal formatoptions+=or
-let b:undo_ftplugin = b:undo_ftplugin
- \ . '|setlocal comments<'
- \ . '|setlocal formatoptions<'
+let b:undo_ftplugin .= '|setlocal comments< formatoptions'