diff --git a/options.html b/options.html index 4764be58..01ae2b7a 100644 --- a/options.html +++ b/options.html @@ -6808,11 +6808,15 @@ if the first character is a space.

Type:

programs.zsh.historySubstringSearch.enable

Whether to enable history substring search.

Type: boolean

Default: false

Example: true

Declared by:

<home-manager/modules/programs/zsh.nix> -
programs.zsh.historySubstringSearch.searchDownKey

The key code to be used when searching down. -The default of ^[[B corresponds to the DOWN key.

Type: string

Default: "^[[B"

Declared by:

+
programs.zsh.historySubstringSearch.searchDownKey

The key codes to be used when searching down. +The default of ^[[B corresponds to the DOWN key.

Type: (list of string) or string

Default:

[
+  "^[[B"
+]

Declared by:

<home-manager/modules/programs/zsh.nix> -
programs.zsh.historySubstringSearch.searchUpKey

The key code to be used when searching up. -The default of ^[[A corresponds to the UP key.

Type: string

Default: "^[[A"

Declared by:

+
programs.zsh.historySubstringSearch.searchUpKey

The key codes to be used when searching up. +The default of ^[[A corresponds to the UP key.

Type: (list of string) or string

Default:

[
+  "^[[A"
+]

Declared by:

<home-manager/modules/programs/zsh.nix>
programs.zsh.initExtra

Extra commands that should be added to .zshrc.

Type: strings concatenated with "\n"

Default: ""

Declared by:

<home-manager/modules/programs/zsh.nix>