mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-07 01:51:14 -03:00
added openssl completions
This commit is contained in:
committed by
Johannes Altmanninger
parent
fb5c64641c
commit
67eaefeb82
7
share/completions/openssl.fish
Normal file
7
share/completions/openssl.fish
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
function __fish_openssl_subcommand_options --description "Print options for openssl subcommand"
|
||||||
|
set -l cmd (commandline -poc)
|
||||||
|
openssl list -options $cmd[2] | string replace -r -- '^(\S*)\s*.*' '-$1'
|
||||||
|
end
|
||||||
|
|
||||||
|
complete -c openssl -n '__fish_use_subcommand' -x -a "(openssl list -1 -commands -cipher-commands -digest-commands)"
|
||||||
|
complete -c openssl -n 'not __fish_use_subcommand && string match -qr -- "^-" (commandline -ct)' -a "(__fish_openssl_subcommand_options)"
|
||||||
Reference in New Issue
Block a user