mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 09:27:38 +00:00
bc2634eaaf
Squashed commit of the following: commit 08ea083bf87a613675789937d7f6740daa26fc61 Author: Shun Sakai <sorairolake@protonmail.ch> Date: Thu Nov 28 23:51:35 2019 +0900 Implementation of `lz4cat` completions commit 027adedfeb7bb65ffd46e44b4266df3d98368326 Author: Shun Sakai <sorairolake@protonmail.ch> Date: Thu Nov 28 23:36:12 2019 +0900 Implementation of `unlz4` completions commit 522925450a8076d4a0d3377cd9233abc643bbbf7 Author: Shun Sakai <sorairolake@protonmail.ch> Date: Thu Nov 28 23:19:45 2019 +0900 Implementation of `lz4c` completions commit 298ce5e05e3be2cac774063ed2ee8289ba53cf24 Author: Shun Sakai <sorairolake@protonmail.ch> Date: Thu Nov 28 23:02:52 2019 +0900 Implementation of `lz4` completions
18 lines
642 B
Fish
18 lines
642 B
Fish
# Completions for lz4cat
|
|
|
|
complete -c lz4cat -x -a "
|
|
(
|
|
__fish_complete_suffix .lz4
|
|
)
|
|
"
|
|
|
|
complete -c lz4cat -s t -l test -d "Test the integrity"
|
|
complete -c lz4cat -l list -d "List information about .lz4 file(s)"
|
|
complete -r -c lz4cat -s D -d "Use specified file as dictionary"
|
|
complete -c lz4cat -l sparse -d "Enable sparse mode"
|
|
complete -c lz4cat -l no-sparse -d "Disable sparse mode"
|
|
complete -c lz4cat -s v -l verbose -d "Be verbose"
|
|
complete -c lz4cat -s q -l quiet -d "Suppress warnings"
|
|
complete -c lz4cat -s h -l help -d "Show help"
|
|
complete -c lz4cat -s H -d "Show long help"
|
|
complete -c lz4cat -s V -l version -d "Show version"
|