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

multicursors

URL: https://github.com/smoka7/multicursors.nvim/

Maintainers: Austin Horstman

plugins.multicursors.enable

Whether to enable multicursors.

Type: boolean

Default: false

Example: true

Declared by:

plugins.multicursors.package

The multicursors package to use.

Type: package

Default: pkgs.vimPlugins.multicursors-nvim

Declared by:

plugins.multicursors.autoLoad

Whether to automatically load multicursors when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.multicursors.settings

Options provided to the require('multicursors').setup function.

Type: lua value

Default: { }

Example:

{
  DEBUG_MODE = true;
  create_commands = false;
  hint_config = {
    position = "top";
    type = "cmdline";
  };
  normal_keys = {
    "," = {
      method = {
        __raw = "require('multicursors.normal_mode').clear_others";
      };
      opts = {
        desc = "Clear others";
      };
    };
  };
}

Declared by: