aboutsummaryrefslogtreecommitdiff
path: root/vim/after
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-12-30 17:21:06 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-12-30 17:21:06 +1300
commit3c1b52b2667668f3bc1a0acb45b901fcd3bcf090 (patch)
tree29377c36d3083db4bcf80363f48092ae3394291e /vim/after
parentFix and refactor HTML timestamp updating (diff)
downloaddotfiles-3c1b52b2667668f3bc1a0acb45b901fcd3bcf090.tar.gz
dotfiles-3c1b52b2667668f3bc1a0acb45b901fcd3bcf090.zip
Factor out HTML timestamp update into sep file
Diffstat (limited to 'vim/after')
-rw-r--r--vim/after/ftplugin/html.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/after/ftplugin/html.vim b/vim/after/ftplugin/html.vim
index 7866f31b..b4e55462 100644
--- a/vim/after/ftplugin/html.vim
+++ b/vim/after/ftplugin/html.vim
@@ -26,7 +26,7 @@ let b:undo_ftplugin .= '|nunmap <buffer> <Leader>='
augroup html_timestamp
autocmd BufWritePre <buffer>
\ if exists('b:html_timestamp_check')
- \| call html#TimestampUpdate()
+ \| call html#timestamp#Update()
\|endif
augroup END
let b:undo_ftplugin .= '|execute ''autocmd! html_timestamp'''