1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-12 09:35:40 +08:00
2017-05-19 00:09:15 +08:00

12 lines
204 B
VimL

let s:self = {}
" see: man 3 strftime
function! s:self.current_time() abort
return strftime('%I:%M %p')
endfunction
function! SpaceVim#api#time#get() abort
return deepcopy(s:self)
endfunction