aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-01-13 20:30:21 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-01-13 20:30:21 +1300
commit8cb17f5adc248c09b7fa7743a275308309dbc972 (patch)
tree6a147be65f29d3f7ab711448f5783de9b98721c4
parentMerge branch 'release/v8.11.0' into develop (diff)
downloaddotfiles-8cb17f5adc248c09b7fa7743a275308309dbc972.tar.gz
dotfiles-8cb17f5adc248c09b7fa7743a275308309dbc972.zip
Remove milliseconds from HTML timestamps
-rw-r--r--vim/autoload/html/timestamp.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/autoload/html/timestamp.vim b/vim/autoload/html/timestamp.vim
index ad79ad23..ce814c94 100644
--- a/vim/autoload/html/timestamp.vim
+++ b/vim/autoload/html/timestamp.vim
@@ -1,7 +1,7 @@
" Keys and date formats for return value of s:Timestamp()
let s:formats = {
\ 'human': '%a, %d %b %Y %T %Z',
- \ 'machine': '%Y-%m-%dT%H:%M:%S.000Z',
+ \ 'machine': '%Y-%m-%dT%H:%M:%SZ',
\}
" Get UTC timestamp string dictionary with layout in s:formats