Compare commits

..

1 Commits

Author SHA1 Message Date
Max Hausch
3553f70b2f Merge c02d4f06c3 into ed9d639de2 2021-03-20 13:04:40 -04:00

View File

@@ -26,7 +26,7 @@ function! s:get_current_date()
endfunction
function! todo#txt#prepend_date()
execute 'normal! 0i' . s:get_current_date() . ' '
execute 'normal! I' . s:get_current_date() . ' '
endfunction
function! todo#txt#replace_date()
@@ -41,7 +41,7 @@ endfunction
function! todo#txt#mark_as_done()
call s:remove_priority()
call todo#txt#prepend_date()
execute 'normal! 0ix '
execute 'normal! Ix '
endfunction
function! todo#txt#mark_all_as_done()