Replies: 1 comment 1 reply
-
We actually don't do backend detection until you call dressing.nvim/lua/dressing/select/telescope.lua Lines 3 to 5 in 5f44f82 or fzf-lua dressing.nvim/lua/dressing/select/fzf_lua.lua Lines 3 to 5 in 5f44f82 I'm not sure why it wouldn't be working, since lazy.nvim is supposed to automatically load the plugin when it's required. You could try adding some logging to these lines and see where exactly it's going wrong |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've installed dressing using lazy.nvim. Dressing, telescope, and fzf-lua are all configured to lazy-load. I seem to be hitting a race condition where the vim.ui.select prompt falls back to the
builtin
backend on some runs of nvim. My uninformed guess is that the check for backend existence happens as soon as the dressing module is loaded.Is there a way I can manually trigger the backend check? That way I can make sure it's updated once the backend has loaded.
Beta Was this translation helpful? Give feedback.
All reactions