↳
In-reply-to
»
@david While you’re typing? I guess this could be used as a starting point (doesn’t work on the very first line):
⤋ Read More
This works! Any way to streamline it further?
autocmd BufNewFile * call s:InsertTimestamp()
inoremap <CR> <Esc>:r!date +"\%F \%T"<CR>A
function! s:InsertTimestamp()
call setline(1, strftime('%Y-%m-%d %H:%M:%S '))
normal! G$
endfunction