summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorJersey <fonseca@uchicago.edu>2020-06-24 18:00:04 +0000
committerJersey <fonseca@uchicago.edu>2020-06-24 18:00:04 +0000
commit71ba68adb9e4228583330ef37a0cb8f431145d15 (patch)
tree3840243b33ee667305db5514991263c2800b5fe4 /plugin
parentc19316cfdf1bc3bf6ff0b849604f01d1878cd223 (diff)
another test 4
Diffstat (limited to 'plugin')
-rw-r--r--plugin/bujo.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/bujo.vim b/plugin/bujo.vim
index 4c1696b..73ca971 100644
--- a/plugin/bujo.vim
+++ b/plugin/bujo.vim
@@ -1,12 +1,12 @@
1if empty(glob('~/bujo')) 1if empty(glob('~/bujo'))
2 call mkdir($HOME . '/bujo', 'p') 2 call mkdir($HOME . '/bujo', 'p')
3 !mv ./../templates/todo.md ~/bujo/ 3 exe "!mv ./../templates/todo.md ~/bujo/"
4endif 4endif
5 5
6" Open the bujo todo list file 6" Open the bujo todo list file
7function s:OpenTodo() 7function s:OpenTodo()
8 "30 makes it open at width 30 8 "30 makes it open at width 30
9 exe ":30vs ~/bujo/todo.md" 9 exe ":30vs " + $HOME + "/bujo/todo.md"
10endfunction 10endfunction
11 11
12if !exists(":Todo") 12if !exists(":Todo")