mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 20:04:30 +08:00
9 lines
305 B
Fish
9 lines
305 B
Fish
|
complete -c bzip2recover -x -a "(
|
||
|
__fish_complete_suffix (commandline -ct) .bz 'Compressed file'
|
||
|
__fish_complete_suffix (commandline -ct) .bz2 'Compressed file'
|
||
|
__fish_complete_suffix (commandline -ct) .tbz 'Compressed archive'
|
||
|
__fish_complete_suffix (commandline -ct) .tbz2 'Compressed archive'
|
||
|
)
|
||
|
"
|
||
|
|