From 81ab591180e22150b00d464008c4cd82c3e8d86d Mon Sep 17 00:00:00 2001 From: Jonathan Teran Date: Sat, 21 Aug 2021 07:45:11 -0300 Subject: [PATCH] fix(command_definition): default to nil on empty (#1142) --- plugin/telescope.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/telescope.vim b/plugin/telescope.vim index bb0228a..dc727ff 100644 --- a/plugin/telescope.vim +++ b/plugin/telescope.vim @@ -111,4 +111,4 @@ function! s:telescope_complete(arg,line,pos) endfunction " Telescope Commands with complete -command! -nargs=* -range -complete=custom,s:telescope_complete Telescope lua require('telescope.command').load_command(, , , ) +command! -nargs=* -range -complete=custom,s:telescope_complete Telescope lua require('telescope.command').load_command(, , , unpack({}))