mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00:00
db5c02fbfc
i.e. "abbr -e <TAB>" will list am (alsamixer)
5 lines
333 B
Fish
5 lines
333 B
Fish
complete -c abbr -f -s a -l add -d 'Add abbreviation'
|
|
complete -c abbr -s e -l erase -d 'Erase abbreviation' -xa '(abbr -s | cut -d" " -f 2- | sed -e "s/ / /")'
|
|
complete -c abbr -f -s s -l show -d 'Print all abbreviations'
|
|
complete -c abbr -f -s l -l list -d 'Print all abbreviation names'
|
|
complete -c abbr -f -s h -l help -d 'Help'
|