You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
910 B
37 lines
910 B
13 years ago
|
history-substring-search
|
||
|
========================
|
||
|
|
||
|
It implements the [Fish shell][1]'s history search feature, where the user can
|
||
|
type in any part of a previously entered command and press the `UP` and `DOWN`
|
||
|
arrow keys to cycle through matching commands.
|
||
|
|
||
|
Settings
|
||
|
--------
|
||
|
|
||
|
### Case Sensitivity
|
||
|
|
||
13 years ago
|
To enable case-sensitivity for this module only, add the following line to
|
||
13 years ago
|
*zshrc*:
|
||
|
|
||
13 years ago
|
zstyle ':omz:module:history-substring-search' case-sensitive 'yes'
|
||
13 years ago
|
|
||
|
### Highlighting
|
||
|
|
||
|
If colors are enabled, _history-substring-search_ will automatically highlight
|
||
|
positive results.
|
||
|
|
||
13 years ago
|
To enable highlighting for this module only, and the following line to *zshrc*:
|
||
13 years ago
|
|
||
13 years ago
|
zstyle -t ':omz:module:history-substring-search' color 'yes'
|
||
13 years ago
|
|
||
|
Authors
|
||
|
-------
|
||
|
|
||
13 years ago
|
*The authors of this module should be contacted via the GitHub issue tracker.*
|
||
13 years ago
|
|
||
|
- [Sorin Ionescu](/sorin-ionescu)
|
||
|
- [Suraj N. Kurapati](/sunaku)
|
||
|
|
||
|
[1]: http://fishshell.com
|
||
|
|