mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
9367d4ff71
This does not include checks/function.fish because that currently includes a "; end" in a message that indent would remove, breaking the test.
7 lines
442 B
Fish
7 lines
442 B
Fish
complete -c abbr -f -s a -l add -d 'Add abbreviation'
|
|
# 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 '(abbr --list)'
|
|
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
|