diff options
author | Jersey Fonseca <jerseyfonseca@gmail.com> | 2020-07-30 14:06:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-30 14:06:32 +0000 |
commit | aaa5f88a8bc23d5e951a72572c2b170102f1f2e9 (patch) | |
tree | 92ccdff8c62cb4c5be7ba818e1f6a35941acc525 /plugin | |
parent | 3b63abea433fa97fbf4be85a701e48cfbddd8ed3 (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')
-rw-r--r-- | plugin/bujo.vim | 2 |
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 | |||
73 | function s:OpenTodo(mods, ...) | 73 | function 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 |
77 | endfunction | 77 | endfunction |
78 | 78 | ||
79 | if !exists(":Todo") | 79 | if !exists(":Todo") |