Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

mini-clue

URL: https://github.com/nvim-mini/mini.clue/

Maintainers: Heitor Augusto

plugins.mini-clue.enable

Whether to enable mini-clue.

Type: boolean

Default: false

Example: true

Declared by:

plugins.mini-clue.package

The mini-clue package to use.

Type: package

Default: pkgs.vimPlugins.mini-clue

Declared by:

plugins.mini-clue.autoLoad

Whether to automatically load mini-clue when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.mini-clue.settings

Options provided to the require('mini.clue').setup function.

Type: lua value

Default: { }

Example:

{
  clues = [
    lib.nixvim.mkRaw "require(\"mini.clue\").gen_clues.builtin_completion()"
    lib.nixvim.mkRaw "require(\"mini.clue\").gen_clues.g()"
    lib.nixvim.mkRaw "require(\"mini.clue\").gen_clues.marks()"
    lib.nixvim.mkRaw "require(\"mini.clue\").gen_clues.registers()"
    lib.nixvim.mkRaw "require(\"mini.clue\").gen_clues.windows()"
    lib.nixvim.mkRaw "require(\"mini.clue\").gen_clues.z()"
  ];
  triggers = [
    {
      keys = "g";
      mode = "n";
    }
    {
      keys = "g";
      mode = "x";
    }
    {
      keys = "'";
      mode = "n";
    }
    {
      keys = "`";
      mode = "n";
    }
    {
      keys = "'";
      mode = "x";
    }
    {
      keys = "`";
      mode = "x";
    }
    {
      keys = "\"";
      mode = "n";
    }
    {
      keys = "\"";
      mode = "x";
    }
    {
      keys = "z";
      mode = "n";
    }
    {
      keys = "z";
      mode = "x";
    }
  ];
}

Declared by: