From 8c364ee070ca116c462997b6cfc28d963c33becd Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 1 Jul 2018 16:58:37 +1200 Subject: Add new html/timestamp.vim ftplugin Not sure if this one will get published--it's a bit ad-hoc in its current state. --- vim/after/ftplugin/html/timestamp.vim | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 vim/after/ftplugin/html/timestamp.vim (limited to 'vim/after/ftplugin') diff --git a/vim/after/ftplugin/html/timestamp.vim b/vim/after/ftplugin/html/timestamp.vim new file mode 100644 index 00000000..29a215cd --- /dev/null +++ b/vim/after/ftplugin/html/timestamp.vim @@ -0,0 +1,28 @@ +" html/timestamp.vim: Update timestamps in HTML files on save. + +" Don't load if running compatible or too old +if &compatible || v:version < 700 + finish +endif + +" Don't load if already loaded +if exists('b:did_ftplugin_html_timestamp') + finish +endif + +" Flag as loaded +let b:did_ftplugin_html_timestamp = 1 +let b:undo_ftplugin = b:undo_ftplugin + \ . '|unlet b:did_ftplugin_html_timestamp' + +" Set up appropriate hooks +augroup html_timestamp + autocmd! + autocmd BufWritePre *.html + \ if exists('b:html_timestamp_check') + \| call html#timestamp#Update() + \|endif +augroup END +let b:undo_ftplugin = b:undo_ftplugin + \ . '|augroup html_timestamp|autocmd!|augroup END' + \ . '|augroup! html_timestamp' -- cgit v1.2.3