summaryrefslogtreecommitdiff
path: root/plugin/bujo.vim
diff options
context:
space:
mode:
authorJersey Fonseca <jerseyfonseca@gmail.com>2020-07-30 14:06:32 +0000
committerGitHub <noreply@github.com>2020-07-30 14:06:32 +0000
commitaaa5f88a8bc23d5e951a72572c2b170102f1f2e9 (patch)
tree92ccdff8c62cb4c5be7ba818e1f6a35941acc525 /plugin/bujo.vim
parent3b63abea433fa97fbf4be85a701e48cfbddd8ed3 (diff)
Added whitespace after vs command
vs can correctly parse "vs~/foo" but not "vsC:/foo" I added a whitespace, so this should increase overall robustness
Diffstat (limited to 'plugin/bujo.vim')
-rw-r--r--plugin/bujo.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/bujo.vim b/plugin/bujo.vim
index 735bef6..5e335aa 100644
--- a/plugin/bujo.vim
+++ b/plugin/bujo.vim
@@ -73,7 +73,7 @@ endfunction
73function s:OpenTodo(mods, ...) 73function s:OpenTodo(mods, ...)
74 let general_bool = a:0 74 let general_bool = a:0
75 let todo_path = s:GetBujoFilePath(general_bool) 75 let todo_path = s:GetBujoFilePath(general_bool)
76 exe a:mods . " " . g:bujo#window_width "vs" . todo_path 76 exe a:mods . " " . g:bujo#window_width "vs " . todo_path
77endfunction 77endfunction
78 78
79if !exists(":Todo") 79if !exists(":Todo")