Feature relase: tab completion now support!
๐ Tab completion
Tab completion now supports. You can type a little and hit the tab. Then you will get what you want.
How to add tab completion?
To do this, you need to follow this steps
- check your terminal shell. Currently we are supporting
bash
,zsh
andfish
. - use
completion
command to generatecompletion script
. - put the completion file to proper path. For example,
zsh
acknowledgescompletion script
if it is placed one of$fpath
.
Then you can use tab completion!
For more detail, please check out the conversation in the pr #147 . Huge shout to @TheRustyPickle .
What's Changed
- Added auto-completion for shells by @TheRustyPickle in #147
- fix cargo clippy, cargo test by @24seconds in #149
- update version to v1.3.3 by @24seconds in #150
Full Changelog: v1.3.2...v1.3.3