mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 09:45:25 +08:00
Add completion for azure cli (az) (#8141)
* add completion for azure cli (az) * alter az.fish to match faho's requests Co-authored-by: Kevin Konrad <kevin.konrad@unicepta.com>
This commit is contained in:
parent
58997cae2f
commit
869c42d72a
|
@ -33,6 +33,7 @@ Completions
|
|||
- Angular's ``ng`` (:issue:`8111`)
|
||||
- ``zef`` (:issue:`8114`)
|
||||
- ``rakudo`` (:issue:`8113`)
|
||||
- ``az`` (:issue:`8141`)
|
||||
|
||||
- Improvements to many completions.
|
||||
|
||||
|
|
12
share/completions/az.fish
Normal file
12
share/completions/az.fish
Normal file
|
@ -0,0 +1,12 @@
|
|||
function __fish_az_complete
|
||||
set -lx _ARGCOMPLETE 1
|
||||
set -lx _ARGCOMPLETE_IFS \n
|
||||
set -lx _ARGCOMPLETE_SUPPRESS_SPACE 1
|
||||
set -lx _ARGCOMPLETE_SHELL fish
|
||||
set -lx COMP_LINE (commandline -pc)
|
||||
set -lx COMP_POINT (string length (commandline -cp))
|
||||
set -lx COMP_TYPE
|
||||
az 8>&1 9>&2 2>/dev/null
|
||||
end
|
||||
|
||||
complete -c az -f -a '(__fish_az_complete)'
|
Loading…
Reference in New Issue
Block a user