aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-06-02 09:16:02 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-06-02 09:16:02 +1200
commit184e2219699da9572b233b83a897cd534def3037 (patch)
treef390285298294054362ae2a4c15c4570659e48a0 /vim/vimrc
parentCorrect the vimrc SourceCmd hook path (diff)
downloaddotfiles-184e2219699da9572b233b83a897cd534def3037.tar.gz
dotfiles-184e2219699da9572b233b83a897cd534def3037.zip
Reference don't copy vimrc source/save checks
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 4afa1cdb..c251765b 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -2,7 +2,7 @@
" Tom Ryder (tejr)’s Literate Vimrc
" ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
"
-" Last updated: Mon, 01 Jun 2020 06:56:18 UTC
+" Last updated: Mon, 01 Jun 2020 07:06:53 UTC
"
" │ And I was lifted up in heart, and thought
" │ Of all my late-shown prowess in the lists,
@@ -364,7 +364,7 @@ autocmd vimrc BufWritePost $MYVIMRC
\ ReloadVimrc
if $MYVIM !=# ''
autocmd vimrc BufWritePost $MYVIM/vimrc
- \ ReloadVimrc
+ \ doautocmd vimrc BufWritePost $MYVIMRC
endif
" If Vim is new enough (v7.0.187) to support the ##SourceCmd event for
@@ -379,7 +379,7 @@ if exists('##SourceCmd')
\ ReloadVimrc
if $MYVIM !=# ''
autocmd vimrc SourceCmd $MYVIM/vimrc
- \ ReloadVimrc
+ \ doautocmd vimrc SourceCmd $MYVIMRC
endif
endif