zsh-fast-alias-tips
zsh-fast-alias-tips copied to clipboard
Fix command matching
Reproduce steps:
alias yst='yarn start'
yarn start:ja
Expected behavior:
(nothing output)
Actual behavior:
💡 yst:ja
Slightly different occurrence:
alias g=git
alias gs="git status"
git status
Expected behavior:
💡 gs
Actual behavior:
💡 gstatus
Slightly different occurrence:
alias g=git alias gs="git status" git status
Expected behavior:
💡 gs
Actual behavior:
💡 gstatus
unable to replicate when using v0.1.0
of def-matcher
Reproduce steps:
cat <<EOF | def-matcher "ls -G -lh -a"
ls='ls -G'
ll='ls -lh'
EOF
Expected output:
ll -a
Actual output:
ll-lh -a