From 22fb99260ece6491fa6c5d431826e073832fe40a Mon Sep 17 00:00:00 2001 From: David Beniamine Date: Fri, 15 Sep 2017 12:27:01 +0200 Subject: [PATCH] fix bad indent --- autoload/todo.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/todo.vim b/autoload/todo.vim index 8ca3f1f..04914ea 100644 --- a/autoload/todo.vim +++ b/autoload/todo.vim @@ -63,10 +63,10 @@ endfunction function! todo#PrependDate() if (getline(".") =~ '\v^\(') - execute "normal! 0f)a\\l\"=strftime(\"%Y-%m-%d\")\P" + execute "normal! 0f)a\\l\"=strftime(\"%Y-%m-%d\")\P" else normal! 0"=strftime("%Y-%m-%d ") -P + P endif endfunction