diff options
| author | jdhao <jdhao@hotmail.com> | 2022-07-11 23:14:16 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2022-07-11 23:14:16 +0800 |
| commit | 99d5a0343b288ec82dc4e43ee5c689c5f5b31960 (patch) | |
| tree | 09fb35c67db587553d414b46fc927526fe1df40f | |
| parent | 3678da1b3c71fb07027ded648675e67d703eb902 (diff) | |
update title str format
| -rw-r--r-- | autoload/utils.vim | 2 |
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 |
