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

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

Maintainers: Heitor Augusto

plugins.mini-splitjoin.enable

Whether to enable mini-splitjoin.

Type: boolean

Default: false

Example: true

Declared by:

plugins.mini-splitjoin.package

The mini-splitjoin package to use.

Type: package

Default: pkgs.vimPlugins.mini-splitjoin

Declared by:

plugins.mini-splitjoin.autoLoad

Whether to automatically load mini-splitjoin when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.mini-splitjoin.settings

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

Type: lua value

Default: { }

Example:

{
  detect = {
    brackets = lib.nixvim.mkRaw "nil";
    exclude_regions = lib.nixvim.mkRaw "nil";
    separator = ",";
  };
  join = {
    hooks_post = lib.nixvim.emptyTable;
    hooks_pre = lib.nixvim.emptyTable;
  };
  mappings = {
    join = "";
    split = "";
    toggle = "gS";
  };
  split = {
    hooks_post = lib.nixvim.emptyTable;
    hooks_pre = lib.nixvim.emptyTable;
  };
}

Declared by: