aboutsummaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2022-07-11 23:14:16 +0800
committerjdhao <jdhao@hotmail.com>2022-07-11 23:14:16 +0800
commit99d5a0343b288ec82dc4e43ee5c689c5f5b31960 (patch)
tree09fb35c67db587553d414b46fc927526fe1df40f /autoload
parent3678da1b3c71fb07027ded648675e67d703eb902 (diff)
update title str format
Diffstat (limited to 'autoload')
-rw-r--r--autoload/utils.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/utils.vim b/autoload/utils.vim
index 5bfff78..d859775 100644
--- a/autoload/utils.vim
+++ b/autoload/utils.vim
@@ -135,7 +135,7 @@ function! utils#Get_titlestr() abort
let l:buf_path = expand('%:p:~')
let l:title_str = l:title_str . l:buf_path . ' '
if &buflisted && l:buf_path != ""
- let l:title_str = l:title_str . strftime('%Y-%m-%d %H:%M %Z',getftime(expand('%')))
+ let l:title_str = l:title_str . strftime('%Y-%m-%d %H:%M:%S%z', getftime(expand('%')))
endif
return l:title_str