aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/utc.vim
blob: 1a464342e432b75cd6a17644dbe7436c88f85f6a (plain) (blame)
1
2
3
4
function! utc#(command) abort
  let tz = expand('$TZ')
  let $TZ = 'UTC' | execute a:command | let $TZ = tz
endfunction