aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/sed.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-10 13:19:12 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-10 13:19:12 +1200
commitc0b33da9bf4d47b01bf6a081f68dffc5497aa75f (patch)
treea925378754fae2a35613c864aa3be59a33c0e6a7 /vim/after/ftplugin/sed.vim
parentClean up existing ftplugins a bit (diff)
downloaddotfiles-c0b33da9bf4d47b01bf6a081f68dffc5497aa75f.tar.gz
dotfiles-c0b33da9bf4d47b01bf6a081f68dffc5497aa75f.zip
Move after/ftplugin/sed.vim to ftplugin/sed.vim
Vim doesn't have a stock ftplugin for sed at all (just syntax), so this can be our base one.
Diffstat (limited to 'vim/after/ftplugin/sed.vim')
-rw-r--r--vim/after/ftplugin/sed.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/vim/after/ftplugin/sed.vim b/vim/after/ftplugin/sed.vim
deleted file mode 100644
index 56447a34..00000000
--- a/vim/after/ftplugin/sed.vim
+++ /dev/null
@@ -1,9 +0,0 @@
-" Extra configuration for sed scripts
-if &filetype !=# 'sed' || v:version < 700
- finish
-endif
-
-" Set comment formats
-setlocal comments=:#
-setlocal formatoptions+=or
-let b:undo_ftplugin .= '|setlocal comments< formatoptions<'