Delete item from loclist and refresh table #2061
-
Hello, I'm having an issue trying to get ctrl-x to delete an item from the loclist. The keybind works when listing buffers and then deleting them. To work around this, I added the following configuration:
With this setup, the item gets deleted as expected, but unlike the buffers list, the window closes after deleting an item. Is there a way to delete an item while keeping the window open and refreshed? |
Beta Was this translation helpful? Give feedback.
Answered by
ibhagwan
May 24, 2025
Replies: 1 comment 8 replies
-
["Ctrl-x"] = { fn = function() … end, reload = true } |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You’re probably lazy loading fzf-lua, the global object
FzfLua
should exist after the first run, it equals therequire
object so it’s the same,The flash you’re getting now is the restarting of the Fzf process not the window recreation, that’s why I said “poor man’s” for quick fix, this will require internal changes to enable reload, open a feature r…