Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 6 days 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-03T08:05:59.000Z (12 months ago)
- Last Synced: 2024-08-01T15:41:48.139Z (3 months ago)
- Topics: zsh, zsh-plugin
- Language: Go
- Homepage:
- Size: 8.09 MB
- Stars: 60
- Watchers: 4
- Forks: 8
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zsh-fast-alias-tips
Helps you remembering the aliases you defined once.
Written in zsh and Go. 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
### Install with [zinit](https://github.com/zdharma/zinit) (recommended)
```sh
zinit ice from'gh-r' as'program'
zinit light sei40kr/fast-alias-tips-bin
zinit light sei40kr/zsh-fast-alias-tips
```### Install with [zplug](https://github.com/zplug/zplug)
```sh
zplug sei40kr/fast-alias-tips-bin, from:gh-r, as:command, rename-to:def-matcher
zplug sei40kr/zsh-fast-alias-tips
```## 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 |