summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorahmedselim2017 <ahmedselimuzum@gmail.com>2020-06-24 23:47:47 +0000
committerahmedselim2017 <ahmedselimuzum@gmail.com>2020-06-24 23:47:47 +0000
commit727a5ab3612bfd7823a0608bf04c0fb1cc1d317c (patch)
treeba9f4b08d5bac73fffae73302c6b3ae03775a497
parent227ce0d7705c72297deabca4cc7adb855632e9f2 (diff)
Added todo_file_path
-rw-r--r--plugin/bujo.vim9
1 files changed, 5 insertions, 4 deletions
diff --git a/plugin/bujo.vim b/plugin/bujo.vim
index bc13304..d5203e9 100644
--- a/plugin/bujo.vim
+++ b/plugin/bujo.vim
@@ -1,18 +1,19 @@
1"Make bujo directory if it doesn't exist" 1"Make bujo directory if it doesn't exist"
2if empty(glob('~/bujo')) 2let g:bujo#todo_file_path = get(g:, "bujo#todo_file_path", $HOME . "/.cache/bujo")
3 call mkdir($HOME . '/bujo', 'p') 3if empty(glob(g:bujo#todo_file_path))
4 call mkdir(g:bujo#todo_file_path)
4endif 5endif
5autocmd bufnewfile todo.md call append(0, '#Todo') 6autocmd bufnewfile todo.md call append(0, '#Todo')
6autocmd bufnewfile todo.md call append(1, 'Date: ') 7autocmd bufnewfile todo.md call append(1, 'Date: ')
7autocmd bufnewfile,bufreadpre todo.md exe "g/Date: */s/Date: /Date: " .strftime("%a %d %b %Y") 8autocmd bufnewfile,bufreadpre todo.md exe "g/Date: */s/Date: /Date: " .strftime("%a %d %b %Y")
8autocmd bufnewfile,Bufwritepre,filewritepre todo.md execute "normal G" 9autocmd bufnewfile,Bufwritepre,filewritepre todo.md execute "normal Go"
9 10
10 11
11 12
12" Open the bujo todo list file 13" Open the bujo todo list file
13function s:OpenTodo() 14function s:OpenTodo()
14 "30 makes it open at width 30 15 "30 makes it open at width 30
15 exe ":30vs ~/bujo/todo.md" 16 exe ":30vs" . g:bujo#todo_file_path . "/todo.md"
16endfunction 17endfunction
17 18
18if !exists(":Todo") 19if !exists(":Todo")