Skip to content

Commit 3ba6db7

Browse files
fix(input): Do not set completion function if not provided
1 parent ebbf28c commit 3ba6db7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/orgmode.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function! OrgmodeInput(prompt, default, ...) abort
77
\ 'cancelreturn': v:null,
88
\ }
99

10-
if a:0 > 0
10+
if a:0 > 0 && a:1 !=? v:null
1111
let opts.completion = 'customlist,'..get(a:1, 'name')
1212
endif
1313
return input(opts)

0 commit comments

Comments
 (0)