fix(input): Remove debug print from completion logic

That's some egg on my face
This commit is contained in:
Steven Arcangeli 2021-12-07 21:38:22 -08:00
parent 683f23ceb1
commit 362cc2c54b
1 changed files with 0 additions and 1 deletions

View File

@ -78,7 +78,6 @@ M.completefunc = function(findstart, base)
if pieces[1] == "custom" or pieces[1] == "customlist" then
local vimfunc = pieces[2]
local ret = vim.fn[vimfunc](base, base, vim.fn.strlen(base))
print(vim.inspect(ret))
if pieces[1] == "custom" then
ret = split(ret, "\n")
end