Skip to content

Commit

Permalink
fix(import aliases): point to correct command
Browse files Browse the repository at this point in the history
  • Loading branch information
olets committed Apr 7, 2020
1 parent 9eceef6 commit 2fe9cbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zsh-abbr.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,13 @@ _zsh_abbr() {
fi

while read -r _alias; do
add $_alias
_zsh_abbr:add $_alias
done < <(alias -r)

type='global'

while read -r _alias; do
add $_alias
_zsh_abbr:add $_alias
done < <(alias -g)

if ! (( dry_run )); then
Expand Down

0 comments on commit 2fe9cbf

Please sign in to comment.