rcarriga / nvim-notify

A fancy, configurable, notification manager for NeoVim
MIT License
3k stars 80 forks source link

The telescope plugin adds an "A" to the search box! #95

Closed amirhhashemi closed 2 years ago

amirhhashemi commented 2 years ago

When I open a file and run any telescope command (:Telescope, :Telescope find_files etc) for the first time, it adds an "A" at the beginning of the search box: image This only happens if the notify plugin is enabled. My terminal is kitty but it also happens in alacritty and wezterm.

This is how I load the notify extention:

telescope.setup(default)

pcall(function()
  local extensions = { "fzf", "ui-select", "notify", "file_browser", "cheat" }
  for _, ext in ipairs(extensions) do
    require("telescope").load_extension(ext)
  end

  telescope.load_extension("file_browser")

  telescope.extensions.notify.notify() --    without this line everything works properly
end)
amirhhashemi commented 2 years ago

This seems to be fixed after I updated my plugins today.