How do i disable the plugin automatically taking over vim.ui.select? #1682
-
I tried using the deregister command, and nothing happend and I am using the basic config that it recommends in the readme I know I must be missing something, but figured I would ask anyway |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
The plugin doesn’t automatically take over ui.select, if you’re using LazyVim it registers using |
Beta Was this translation helpful? Give feedback.
-
First off, thanks for the response! Secondly, I am not using lazyvim return { I tried getting rid of the keys section, and that didn't change anything (which it shouldn't anyway) I could be wrong, but maybe it has something to do with the way my lsp stuff is configured?
Other than that, i have no idea what is going on. |
Beta Was this translation helpful? Give feedback.
The plugin doesn’t automatically take over ui.select, if you’re using LazyVim it registers using
register_ui_select
, which you can revert with:FzfLua deregister_ui_select
.