Replies: 3 comments 13 replies
-
|
Add return { no_resume = true, winopts = { height = h, width = 0.60, row = 0.40 } } |
Beta Was this translation helpful? Give feedback.
11 replies
-
|
Tested this again, the register_ui_select opts indeed do not affect the lsp code actions, you'd need to add opts = {
...
-- your other opts
lsp = {
code_actions = { no_resume = true },
},
}, |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
That seems to work but I was already getting the same behavior without. It resumes the picker but the state is gone so not very useful unfortunately |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm sure this already has a solution but I couldn't find anything searching issues/discussions so here goes:
I have vim.ui.select configured to use fzf-lua:
Say I launch a grep search and then trigger some action that open vim.ui.select, this will overwrite the resume state so I have to restart my grep.
How can vim.ui.select actions be excluded from resume?
Beta Was this translation helpful? Give feedback.
All reactions