olets / zsh-abbr

The zsh manager for auto-expanding abbreviations, inspired by fish. ~13,000 unique cloners as of May '24, 580+ Homebrew installs 6/23-6/24
https://zsh-abbr.olets.dev
Other
510 stars 18 forks source link

Multi word abbreviations (#32; v5) #50

Closed olets closed 2 years ago

olets commented 2 years ago

For discussion see #32

Abbreviations can be more than one word

% abbr "git cp"="git cherry-pick"
% git cp<space>
# expands inline to `git cherry-pick`!

% abbr g=git
% g<space>fp<space>
# expands inline to `git cherry-pick`!