Stefano Mazzucco 84d5fb0ab6 Merge remote-tracking branch 'upstream/master' | 1 年間 前 | |
---|---|---|
.. | ||
external @ aae3388491 | 6 年 前 | |
README.md | 1 年間 前 | |
init.zsh | 1 年間 前 |
Integrates zsh-history-substring-search
into Prezto, which implements the
Fish shell's history search feature, where the user can type in any part of
a previously entered command and press up and down to cycle through matching
commands.
If this module is used in conjunction with the syntax-highlighting
module, this module must be loaded after the syntax-highlighting
module.
Additionally, if this module is used in conjunction with the
autosuggestions
module, this module must be loaded before the
autosuggestions
module.
To elaborate, the relative order of loading the modules would be
syntax-highlighting
, history-substring-search
and autosuggestions
.
New features and bug fixes should be submitted to the
zsh-history-substring-search
project according to its rules and
regulations. This module will be synchronized against it.
To enable case-sensitivity for this module only, add the following line to
${ZDOTDIR:-$HOME}/.zpreztorc
:
zstyle ':prezto:module:history-substring-search' case-sensitive 'yes'
If colors are enabled, history-substring-search will automatically highlight positive results.
To disable highlighting for this module only, add the following line to
${ZDOTDIR:-$HOME}/.zpreztorc
:
zstyle ':prezto:module:history-substring-search' color 'no'
To set the query found color, add the following line to
${ZDOTDIR:-$HOME}/.zpreztorc
:
zstyle ':prezto:module:history-substring-search:color' found ''
To set the query not found color, add the following line to
${ZDOTDIR:-$HOME}/.zpreztorc
:
zstyle ':prezto:module:history-substring-search:color' not-found ''
To set the search globbing flags, add the following line to
${ZDOTDIR:-$HOME}/.zpreztorc
:
zstyle ':prezto:module:history-substring-search' globbing-flags ''
To set the search case-sensitivity, add the following line to
${ZDOTDIR:-$HOME}/.zpreztorc
:
zstyle ':prezto:module:history-substring-search' case-sensitive 'yes'
To enable search for fuzzy matches, add the following line to
${ZDOTDIR:-$HOME}/.zpreztorc
:
zstyle ':prezto:module:history-substring-search' fuzzy 'yes'
To enable unique results, add the following line to
${ZDOTDIR:-$HOME}/.zpreztorc
:
zstyle ':prezto:module:history-substring-search' unique 'yes'
To enable prefixed search matches, add the following line to
${ZDOTDIR:-$HOME}/.zpreztorc
:
zstyle ':prezto:module:history-substring-search' prefixed 'yes'
The authors of this module should be contacted via the issue tracker.