https://github.com/sei40kr/zsh-fast-alias-tips
Help remembering the aliases you defined once
https://github.com/sei40kr/zsh-fast-alias-tips
zsh zsh-plugin
Last synced: 5 months ago
JSON representation
Help remembering the aliases you defined once
- Host: GitHub
- URL: https://github.com/sei40kr/zsh-fast-alias-tips
- Owner: sei40kr
- License: mit
- Created: 2019-02-07T11:00:21.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-03T08:05:59.000Z (over 2 years ago)
- Last Synced: 2025-10-20T18:44:39.678Z (8 months ago)
- Topics: zsh, zsh-plugin
- Language: Go
- Homepage:
- Size: 8.09 MB
- Stars: 60
- Watchers: 1
- Forks: 8
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zsh-plugins - fast-alias-tips - Helps remember the aliases you defined and forgot about. Ported from [djui/alias-tips](https://github.com/djui/alias-tips). (Plugins / Zinit (née zplugin))
README
# zsh-fast-alias-tips
Helps you remembering the aliases you defined once.
Written in zsh and Rust. Ported from [djui/alias-tips](https://github.com/djui/alias-tips).
## Example
```
$ alias gst='git status'
$ git status
💡 gst
On branch master
Your branch is up to date with 'origin/master'.
nothing to commit, working tree clean
```
## Install
### Requirements
- Rust (cargo)
- zsh
### Install with [zinit](https://github.com/zdharma/zinit)
```sh
zinit ice atclone'cargo build --release' atpull'%atclone'
zinit light sei40kr/zsh-fast-alias-tips
```
The plugin will automatically build the `alias-matcher` binary during installation and updates.
## Customization
| Variable | Default value | Description |
| :-- | :-- | :-- |
| `FAST_ALIAS_TIPS_PREFIX` | `"💡 $(tput bold)"` | The prefix of the Tips |
| `FAST_ALIAS_TIPS_SUFFIX` | `"$(tput sgr0)"` | The suffix of the Tips |