You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no way for vim.ui.select to know that it has been called from a code actions function. A potential workaround could be to map your codeactions key map to a custom function that would be wrapping codeactions.
Something along these lines may work, I haven't tested.
localfunctionsetup_telescope() --[[ require('telescope').setup({ regular_config })local function setup_custom_telescope() --[[ require('telescope').setup({ config_from_example + on_complete_call_setup_telescope })]]endfunctioncustom_codeactions()
setup_custom_telescope()
vim.lsp.buf.code_action()
end
Hi there! Thanks for your work!
I'm trying to set a specific setup for codeactions while leaving the rest as default.
So withing Telescope's extensions table, the
ui-select
config looks like this:Is there any way I could use that config but only for codeactions, while leaving the rest of the popups as they are?
I've tried following the Readme but I can't quite figure it out 🤔
The text was updated successfully, but these errors were encountered: