aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/html.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-11-26 21:27:53 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-11-26 21:27:53 +1300
commit478774d1c1cadf12265b50e99e086931fd689533 (patch)
treee577eea0fb719e12dafddefa796e1d4733a46931 /vim/after/ftplugin/html.vim
parentMove b:undo_ftplugin unsets for C inline with sets (diff)
downloaddotfiles-478774d1c1cadf12265b50e99e086931fd689533.tar.gz
dotfiles-478774d1c1cadf12265b50e99e086931fd689533.zip
Correct indentation in a few vim/after scripts
Diffstat (limited to 'vim/after/ftplugin/html.vim')
-rw-r--r--vim/after/ftplugin/html.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/after/ftplugin/html.vim b/vim/after/ftplugin/html.vim
index dc429221..759d06bf 100644
--- a/vim/after/ftplugin/html.vim
+++ b/vim/after/ftplugin/html.vim
@@ -12,9 +12,9 @@ let b:undo_ftplugin .= '|unlet b:current_compiler'
" Set up hooks for timestamp updating
augroup html_timestamp
autocmd BufWritePre <buffer>
- \ if exists('b:html_timestamp_check')
- \| call html#TimestampUpdate()
- \|endif
+ \ if exists('b:html_timestamp_check')
+ \| call html#TimestampUpdate()
+ \|endif
augroup END
let b:undo_ftplugin .= '|autocmd! html_timestamp BufWritePre <buffer>'