~vigoux/complementree.nvim

a78fd94ec6d23ab55477379f050625d4dfa6eefc — Thomas Vigouroux 2 years ago c102b69
style: remove unnecessary print
2 files changed, 0 insertions(+), 4 deletions(-)

M lua/complementree/init.lua
M teal/complementree/init.tl
M lua/complementree/init.lua => lua/complementree/init.lua +0 -2
@@ 141,10 141,8 @@ function M._CompleteDone()
   if not completed_item or not completed_item.user_data or not completed_item.user_data.source then
      return
   end
   vim.notify("CompleteDone")
   local func = sources.complete_done_cbs[completed_item.user_data.source]
   if func then
      vim.notify("CompleteDone found")




M teal/complementree/init.tl => teal/complementree/init.tl +0 -2
@@ 141,10 141,8 @@ function M._CompleteDone()
  if not completed_item or not completed_item.user_data or not completed_item.user_data.source then
    return
  end
  vim.notify "CompleteDone"
  local func = sources.complete_done_cbs[completed_item.user_data.source]
  if func then
    vim.notify "CompleteDone found"
    -- We will force the ignore of InsertLeave events for a certain time, in order to avoid strange
    -- behavior and flickering of the UI. So we _synchronously_ set 'eventignore' to ignore
    -- InsertLeave, and schedule the reset in the loop.