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-jump

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

Maintainers: Heitor Augusto

plugins.mini-jump.enable

Whether to enable mini-jump.

Type: boolean

Default: false

Example: true

Declared by:

plugins.mini-jump.package

The mini-jump package to use.

Type: package

Default: pkgs.vimPlugins.mini-jump

Declared by:

plugins.mini-jump.autoLoad

Whether to automatically load mini-jump when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.mini-jump.settings

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

Type: lua value

Default: { }

Example:

{
  delay = {
    highlight = 250;
    idle_stop = 10000000;
  };
  mappings = {
    backward = "F";
    backward_till = "T";
    forward = "f";
    forward_till = "t";
    repeat_jump = ";";
  };
  silent = false;
}

Declared by: