aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-14 20:41:33 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-14 20:41:33 +1200
commitefadde49f989a169bb34f1f7024ca661b5ae79cd (patch)
tree8be01e7321a780c740c10507f3bcb3420bd8a01c /vim
parentAdd mail quote maps for gitcommit and markdown (diff)
downloaddotfiles-efadde49f989a169bb34f1f7024ca661b5ae79cd.tar.gz
dotfiles-efadde49f989a169bb34f1f7024ca661b5ae79cd.zip
Spin off vimrc_reload_filetype.vim
Diffstat (limited to 'vim')
m---------vim/bundle/vimrc_reload_filetype0
-rw-r--r--vim/plugin/reload_vimrc_filetype.vim23
2 files changed, 0 insertions, 23 deletions
diff --git a/vim/bundle/vimrc_reload_filetype b/vim/bundle/vimrc_reload_filetype
new file mode 160000
+Subproject 34f746015a76fda53b70dda91f81edf41f75d47
diff --git a/vim/plugin/reload_vimrc_filetype.vim b/vim/plugin/reload_vimrc_filetype.vim
deleted file mode 100644
index d4f853b8..00000000
--- a/vim/plugin/reload_vimrc_filetype.vim
+++ /dev/null
@@ -1,23 +0,0 @@
-"
-" reload_vimrc_filetype.vim: Add hook to reload active buffer's filetype when
-" vimrc reloaded, so that we don't end up indenting four spaces in an open
-" VimL file, etc. Requires Vim 7.1 or 7.0 with patch 187 (SourceCmd event.)
-"
-" Author: Tom Ryder <tom@sanctum.geek.nz>
-" License: Same as Vim itself
-"
-if exists('g:loaded_reload_vimrc_filetype') || &compatible
- finish
-endif
-if !has('autocmd') || v:version < 700 || v:version == 700 && !has('patch187')
- finish
-endif
-let g:loaded_reload_vimrc_filetype = 1
-
-" This SourceCmd intercepts :source for .vimrc
-augroup reload_vimrc_filetype
- autocmd SourceCmd $MYVIMRC
- \ source <afile>
- \|doautocmd filetypedetect BufRead
- \|echomsg 'Reloaded vimrc: '.expand('<afile>')
-augroup END