prezto/modules/autosuggestions/README.md

63 lines
1.9 KiB
Markdown
Raw Normal View History

# Autosuggestions
2016-03-02 21:31:30 +00:00
Integrates [zsh-autosuggestions][1] into Prezto, which implements the
[Fish shell][2]'s autosuggestions feature, where the user can type in any part
of a previously entered command and Zsh suggests commands as you type based on
history and completions.
If this module is used in conjunction with the [_`syntax-highlighting`_][3]
module, this module must be loaded _after_ the _`syntax-highlighting`_ module.
2016-03-02 21:31:30 +00:00
Additionally, if this module is used in conjunction with the
[_`history-substring-search`_][4] module, this module must be loaded _after_ the
_`history-substring-search`_ module as well.
2016-03-02 21:31:30 +00:00
To elaborate, the relative order of loading the modules would be
_`syntax-highlighting`_, _`history-substring-search`_ and _`autosuggestions`_.
## Contributors
2016-03-02 21:31:30 +00:00
New features and bug fixes should be submitted to the [zsh-autosuggestions][1]
project according to its rules and regulations. This module will be synchronized
against it.
## Settings
2016-03-02 21:31:30 +00:00
### Highlighting
If colors are enabled, _autosuggestions_ will automatically highlight
2016-03-02 21:31:30 +00:00
positive results.
To enable highlighting for this module only, add the following line to
_`${ZDOTDIR:-$HOME}/.zpreztorc`_:
2016-03-02 21:31:30 +00:00
```sh
zstyle ':prezto:module:autosuggestions' color 'yes'
```
2016-03-02 21:31:30 +00:00
To set the query found color, add the following line to
_`${ZDOTDIR:-$HOME}/.zpreztorc`_:
2016-03-02 21:31:30 +00:00
```sh
zstyle ':prezto:module:autosuggestions:color' found ''
```
2016-03-02 21:31:30 +00:00
## Troubleshooting
### Autosuggestions from previous sessions don't show up
For autosuggestions from previous shell sessions to work, please make sure you
also have the `history` module enabled.
## Authors
2016-03-02 21:31:30 +00:00
_The authors of this module should be contacted via the [issue tracker][5]._
2016-03-02 21:31:30 +00:00
- [Sorin Ionescu](https://github.com/sorin-ionescu)
2016-03-02 21:31:30 +00:00
[1]: https://github.com/tarruda/zsh-autosuggestions
[2]: https://fishshell.com
[3]: ../syntax-highlighting#readme
[4]: ../history-substring-search#readme
[5]: https://github.com/sorin-ionescu/prezto/issues