alias-tips icon indicating copy to clipboard operation
alias-tips copied to clipboard

An oh-my-zsh plugin to help remembering those aliases you defined once

Results 18 alias-tips issues
Sort by recently updated
recently updated
newest added

``` echo $shell_functions "\n" $git_aliases "\n" $shell_aliases | \ python ${_alias_tips__PLUGIN_DIR}/alias-tips.py $* ``` This echo doesn't print corresponding alias.

bug

Currently, only providing test-cases with minimal feature constraints. These will be implemented once the test-cases are finalized. - [x] Write Tests - [ ] Implement

Currently the following does not work: ``` # alias l=ls '-l -h -a' # alias l=ls -lha' $ ls -l -a -h foo $ ls -lah foo ``` should be...

enhancement
help wanted

Sometimes it makes sense to define an alias with redirect(s) _prefixed_ if additional arguments are prepended. ``` # alias ggb='2>/dev/null git gui' $ 2>/dev/null git gui blame foo $ git...

enhancement
help wanted

with this great plugin I can see my alias when typing 'git remote -v'. This alias-tips plugin will show: grv. Great! so now my question: wouldn't it be great to...

Modify the description that may cause confusion.

I have git itself aliased: ```bash alias g=git ``` This causes git aliases not to be found. That is, `git status` will cause `Alias tip: git st`, but `g status`...

for example I have two alias `alias g='git'` `alias gp = 'git push'` and then if i do `g push` it won't show me the prompt that this is the...