blob: 3c865077577e8a58db004042d79c81fd79f6cb43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
" Insert the current date in the format "2021.10.01" after the cursor.
function! date#Insert(separator)
let separator = '.'
if a:separator != ''
let separator = a:separator
endif
let date = strftime('%Y' . separator . '%m' . separator . '%d')
execute 'normal! a' . date . "\<Esc>"
endfunction
|