We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f30efc6 commit b13c8b3Copy full SHA for b13c8b3
lua/astrocommunity/lsp/actions-preview-nvim/init.lua
@@ -29,9 +29,11 @@ return {
29
},
30
opts = function(_, opts)
31
local is_available = require("astrocore").is_available
32
- opts.backend.provider = (is_available "telescope.nvim" and "telescope")
33
- or (is_available "mini.pick" and "minipick")
34
- or (is_available "snacks.nvim" and "snacks")
35
- or (is_available "nui.nvim" and "nui")
+ opts.backend = {
+ (is_available "snacks.nvim" and "snacks")
+ or (is_available "telescope.nvim" and "telescope")
+ or (is_available "mini.pick" and "minipick")
36
+ or (is_available "nui.nvim" and "nui"),
37
+ }
38
end,
39
}
0 commit comments