plugins.yanky.settings.picker.telescope.mappings

This define or overrides the mappings available in Telescope.

If you set settings.use_default_mappings to true, mappings will be merged with default mappings.

Type: null or (attribute set of (lua function string or attribute set of lua function string or raw lua code))

Default: null

Plugin default: null

Example:

{
  default = "mapping.put('p')";
  i = {
    "<c-g>" = "mapping.put('p')";
    "<c-k>" = "mapping.put('P')";
    "<c-r>" = "mapping.set_register(utils.get_default_register())";
    "<c-x>" = "mapping.delete()";
  };
  n = {
    P = "mapping.put('P')";
    d = "mapping.delete()";
    p = "mapping.put('p')";
    r = "mapping.set_register(utils.get_default_register())";
  };
}

Declared by:

plugins.yanky.settings.picker.telescope.use_default_mappings

This define or overrides the mappings available in Telescope.

If you set this option to true, mappings will be merged with default mappings.

Type: null or boolean or raw lua code

Default: null

Plugin default: true

Declared by: