2023-02-01 19:11:37 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2023-11-08 02:16:46 +00:00
|
|
|
}: let
|
2024-03-12 00:46:29 +00:00
|
|
|
inherit (lib.modules) mkIf;
|
|
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
|
|
|
inherit (lib.nvim.binds) mkSetBinding addDescriptionsToMappings pushDownDefault;
|
2023-11-08 02:16:46 +00:00
|
|
|
|
2023-02-01 19:11:37 +00:00
|
|
|
cfg = config.vim.lsp;
|
2023-05-02 21:22:35 +00:00
|
|
|
|
|
|
|
self = import ./nvim-code-action-menu.nix {inherit lib;};
|
|
|
|
mappingDefinitions = self.options.vim.lsp.nvimCodeActionMenu.mappings;
|
|
|
|
mappings = addDescriptionsToMappings cfg.nvimCodeActionMenu.mappings mappingDefinitions;
|
2023-02-01 19:11:37 +00:00
|
|
|
in {
|
|
|
|
config = mkIf (cfg.enable && cfg.nvimCodeActionMenu.enable) {
|
2024-03-12 00:46:29 +00:00
|
|
|
vim = {
|
|
|
|
startPlugins = ["nvim-code-action-menu"];
|
2023-02-01 19:11:37 +00:00
|
|
|
|
2024-03-12 00:46:29 +00:00
|
|
|
maps.normal = mkSetBinding mappings.open ":CodeActionMenu<CR>";
|
2023-07-30 16:13:05 +00:00
|
|
|
|
2024-03-12 00:46:29 +00:00
|
|
|
binds.whichKey.register = pushDownDefault {
|
|
|
|
"<leader>c" = "+CodeAction";
|
|
|
|
};
|
2024-02-25 16:39:05 +00:00
|
|
|
|
2024-03-12 00:46:29 +00:00
|
|
|
luaConfigRC.code-action-menu = entryAnywhere ''
|
|
|
|
-- border configuration
|
|
|
|
vim.g.code_action_menu_window_border = '${config.vim.ui.borders.plugins.code-action-menu.style}'
|
2023-07-30 16:13:05 +00:00
|
|
|
|
2024-03-12 00:46:29 +00:00
|
|
|
-- show individual sections of the code action menu
|
|
|
|
${lib.optionalString cfg.nvimCodeActionMenu.show.details "vim.g.code_action_menu_show_details = true"}
|
|
|
|
${lib.optionalString cfg.nvimCodeActionMenu.show.diff "vim.g.code_action_menu_show_diff = true"}
|
|
|
|
${lib.optionalString cfg.nvimCodeActionMenu.show.actionKind "vim.g.code_action_menu_show_action_kind = true"}
|
|
|
|
'';
|
|
|
|
};
|
2023-02-01 19:11:37 +00:00
|
|
|
};
|
|
|
|
}
|