mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-25 20:33:08 +00:00
parent
e1ab6494cd
commit
49008d7a1c
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
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/ / /")'
|
||||
# Abbr keys can't contain spaces, so we can safely replace the first space with a tab
|
||||
# `abbr -s` won't work here because that already escapes
|
||||
complete -c abbr -s e -l erase -d 'Erase abbreviation' -xa '(string replace " " \t -- $fish_user_abbreviations)'
|
||||
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'
|
||||
|
|
Loading…
Reference in a new issue