plugins.yanky.picker.telescope.enable
Whether to enable the yank_history
telescope picker…
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.yanky.picker.telescope.mappings
This define or overrides the mappings available in Telescope.
If you set useDefaultMappings
to true
, mappings will be merged with default
mappings.
Example:
{
i = {
"<c-g>" = "put('p')";
"<c-k>" = "put('P')";
"<c-x>" = "delete()";
"<c-r>" = "set_register(require('yanky.utils').get_default_register())";
};
n = {
p = "put('p')";
P = "put('P')";
d = "delete()";
r = "set_register(require('yanky.utils').get_default_register())";
};
}
Type: null or (attribute set of attribute set of string)
Default:
null
Declared by:
plugins.yanky.picker.telescope.useDefaultMappings
This define if default Telescope mappings should be used.
Plugin default: true
Type: null or boolean or raw lua code
Default:
null
Declared by: