mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 11:40:04 +08:00
12 lines
204 B
VimL
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
|