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

vim-test

URL: https://github.com/vim-test/vim-test/

Maintainers: Gaetan Lepage

plugins.vim-test.enable

Whether to enable vim-test.

Type: boolean

Default: false

Example: true

Declared by:

plugins.vim-test.package

The vim-test package to use.

Type: package

Default: pkgs.vimPlugins.vim-test

Declared by:

plugins.vim-test.autoLoad

Whether to automatically load vim-test when neovim starts.

Type: boolean

Default: true

Example: false

Declared by:

plugins.vim-test.settings

The configuration options for vim-test without the test# prefix.

For example, the following settings are equivialent to these :setglobal commands:

  • foo_bar = 1 -> :setglobal test#foo_bar=1
  • hello = "world" -> :setglobal test#hello="world"
  • some_toggle = true -> :setglobal test#some_toggle
  • other_toggle = false -> :setglobal notest#other_toggle

Type: attribute set of anything

Default: { }

Example:

{
  "javascript#jest#options" = "--reporters jest-vim-reporter";
  "neovim#term_position" = "vert";
  preserve_screen = false;
  strategy = {
    file = "vimux";
    nearest = "vimux";
    suite = "vimux";
  };
}

Declared by: