aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/html.vim
blob: c93c0b8e3a568921b02a98fd8afb75df7d8e5fb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
" Tidy the whole buffer
function! html#Tidy() abort
  let view = winsaveview()
  %!tidy -quiet
  call winrestview(view)
endfunction

let s:formats = {
      \ 'human': '%a, %d %b %Y %T %Z',
      \ 'machine': '%Y-%m-%dT%H:%M:%S.000Z',
      \}

function! s:Timestamp(time) abort
  if exists('$TZ')
    let tz = $TZ
  endif
  let $TZ = 'UTC'
  let time = localtime()
  let timestamp = {}
  for key in keys(s:formats)
    let timestamp[key] = strftime(s:formats[key], time)
  endfor
  if exists('tz')
    let $TZ = tz
  endif
  return timestamp
endfunction

let s:pattern = '\m\C'
      \.'Last updated: '
      \.'<time datetime="[^"]\+">'
      \.'[^<]\+'
      \.'</time>'

" Update a timestamp
function! html#TimestampUpdate() abort
  if !&modified
    return
  endif
  let lnum = search(s:pattern, 'nw')
  if !lnum
    return
  endif
  let timestamp = s:Timestamp(localtime())
  let update = 'Last updated: '
        \.'<time datetime="'.timestamp['machine'].'">'
        \.timestamp['human']
        \.'</time>'
  let line = getline(lnum)
  let line = substitute(line, s:pattern, update, '')
  call setline(lnum, line)
endfunction