plugins.neoclip.settings.keys.fzf
Keys to use for the fzf
picker.
Only insert mode is supported and fzf-style key-syntax needs to be used.
You can also use the custom
entry to specify custom actions to take on certain
key-presses, see
here for
more details.
Type: null or (attribute set of (anything or raw lua code))
Default:
null
Plugin default:
{
custom = { };
paste = "ctrl-p";
paste_behind = "ctrl-k";
select = "default";
}
Declared by:
plugins.neoclip.settings.keys.telescope
Keys to use for the telescope
picker.
Normal key-syntax is supported and both insert i
and normal mode n
.
You can also use the custom
entry to specify custom actions to take on certain
key-presses, see
here for
more details.
NOTE: these are only set in the telescope buffer and you need to setup your own keybindings to for example open telescope.
Type: null or (attribute set of ((attribute set of anything) or raw lua code))
Default:
null
Plugin default:
{
i = {
custom = { };
delete = "<c-d>";
edit = "<c-e>";
paste = "<c-p>";
paste_behind = "<c-k>";
replay = "<c-q>";
select = "<cr>";
};
n = {
custom = { };
delete = "d";
edit = "e";
paste = "p";
paste_behind = "P";
replay = "q";
select = "<cr>";
};
}
Declared by: