aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-08-23 14:16:14 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-08-23 14:16:14 +1200
commite1cc4579dc48bc57eab9ff86386e807457081df8 (patch)
treee802a9d4947fc94d905208a768ccbf2678605f23
parentMerge branch 'release/v1.60.0' into develop (diff)
downloaddotfiles-e1cc4579dc48bc57eab9ff86386e807457081df8.tar.gz
dotfiles-e1cc4579dc48bc57eab9ff86386e807457081df8.zip
Remove doubleup in Awk ftplugin
The after/ftplugin version does exactly the same things as the primary ftplugin version does; this file should have been removed in commit a2f8dea.
-rw-r--r--vim/after/ftplugin/awk.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/vim/after/ftplugin/awk.vim b/vim/after/ftplugin/awk.vim
deleted file mode 100644
index 6a8ac1ac..00000000
--- a/vim/after/ftplugin/awk.vim
+++ /dev/null
@@ -1,9 +0,0 @@
-" Extra configuration for AWK scripts
-if &filetype !=# 'awk' || v:version < 700
- finish
-endif
-
-" Set comment formats
-setlocal comments=:#
-setlocal formatoptions+=or
-let b:undo_ftplugin .= '|setlocal comments< formatoptions'