summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugin/bujo.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/bujo.vim b/plugin/bujo.vim
index 62b8144..ecca104 100644
--- a/plugin/bujo.vim
+++ b/plugin/bujo.vim
@@ -5,7 +5,7 @@ if empty(glob(g:bujo#todo_file_path))
5endif 5endif
6autocmd bufnewfile todo.md call append(0, '#Todo') 6autocmd bufnewfile todo.md call append(0, '#Todo')
7autocmd bufnewfile todo.md call append(1, 'Date: ') 7autocmd bufnewfile todo.md call append(1, 'Date: ')
8autocmd bufnewfile,bufreadpre,filewritepre todo.md exe "g/Date: */s/Date: /Date: " .strftime("%a %d %b %Y") 8autocmd bufnewfile,bufreadpre,filewritepre todo.md exe "g/Date: */s/Date: *.*/Date: " .strftime("%a %d %b %Y")
9autocmd bufnewfile,Bufwritepre,filewritepre todo.md execute "normal Go" 9autocmd bufnewfile,Bufwritepre,filewritepre todo.md execute "normal Go"
10 10
11 11