Shows a list of actions based on a pre-defined list, which can be changed or extended. Uses fzf-lua to display the options.
Using lazy.nvim, the plugin can be imported using:
return {
"lsmoura/action-list.nvim",
config = function()
local actions = require("action-list.actions")
require('action-list').setup({
opts = actions,
sort = true,
})
end,
keys = {
{
"<C-S-A>",
function()
require('action-list').open()
end,
desc = "Action Picker",
},
},
}- Sergio Moura https://sergio.moura.ca
