mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 11:01:15 +00:00
fastaction-nvim: move range_code_action to visual maps
This commit is contained in:
parent
16f781e627
commit
cd1eb78f02
1 changed files with 8 additions and 6 deletions
|
@ -3,10 +3,10 @@
|
|||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (lib.modules) mkIf mkMerge;
|
||||
inherit (lib.modules) mkIf;
|
||||
inherit (lib.nvim.dag) entryAnywhere;
|
||||
inherit (lib.nvim.lua) toLuaObject;
|
||||
inherit (lib.nvim.binds) addDescriptionsToMappings mkSetLuaBinding;
|
||||
inherit (lib.nvim.binds) addDescriptionsToMappings mkSetLuaBinding pushDownDefault;
|
||||
|
||||
cfg = config.vim.lsp.code-actions;
|
||||
self = import ./fastaction-nvim.nix {inherit lib;};
|
||||
|
@ -18,11 +18,13 @@ in {
|
|||
vim = {
|
||||
startPlugins = ["fastaction-nvim"];
|
||||
|
||||
binds.whichKey.register = pushDownDefault {
|
||||
"<leader>c" = "Code Actions";
|
||||
};
|
||||
|
||||
maps = {
|
||||
normal = mkMerge [
|
||||
(mkSetLuaBinding mappings.code_action "require('fastaction').code_action")
|
||||
(mkSetLuaBinding mappings.range_action "require('fastaction').range_code_action")
|
||||
];
|
||||
normal = mkSetLuaBinding mappings.code_action "require('fastaction').code_action";
|
||||
visual = mkSetLuaBinding mappings.range_action "require('fastaction').range_code_action";
|
||||
};
|
||||
|
||||
pluginRC.fastaction-nvim = entryAnywhere ''
|
||||
|
|
Loading…
Reference in a new issue