summaryrefslogtreecommitdiffstats
path: root/Completion/Unix/Command
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2026-04-05 11:29:28 +0200
committerOliver Kiddle <opk@zsh.org>2026-04-05 11:29:28 +0200
commitc8923e69da537043d6c8b8361d78d0c48535388d (patch)
treec3756dfa870d716f15fbba48dca274c8aeeb2c7d /Completion/Unix/Command
parentgithub #163: fix completion of ssh (option -E) (diff)
downloadzsh-c8923e69da537043d6c8b8361d78d0c48535388d.tar
zsh-c8923e69da537043d6c8b8361d78d0c48535388d.tar.gz
zsh-c8923e69da537043d6c8b8361d78d0c48535388d.tar.bz2
zsh-c8923e69da537043d6c8b8361d78d0c48535388d.tar.lz
zsh-c8923e69da537043d6c8b8361d78d0c48535388d.tar.xz
zsh-c8923e69da537043d6c8b8361d78d0c48535388d.tar.zst
zsh-c8923e69da537043d6c8b8361d78d0c48535388d.zip
54276: fix to add full list of compression algorithms as completion matches for zfs
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r--Completion/Unix/Command/_zfs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Completion/Unix/Command/_zfs b/Completion/Unix/Command/_zfs
index cfbb3db4d..6ee61b289 100644
--- a/Completion/Unix/Command/_zfs
+++ b/Completion/Unix/Command/_zfs
@@ -65,10 +65,10 @@ rw_ds_props=(
'aclinherit:value:(discard noallow restricted passthrough passthrough-x)'
'atime:value:(on off)'
'canmount:value:(on off noauto)'
- "checksum:value:($sum_algorithms)"
- "compression:value:($comp_algorithms)"
+ 'checksum:value:($sum_algorithms)'
+ 'compression:value:($comp_algorithms)'
'copies:value:(1 2 3)'
- "dedup:value:($dedup_algorithms)"
+ 'dedup:value:($dedup_algorithms)'
'devices:value:(on off)'
'encryption:value:(off on aes128-ccm aes-192-ccm aes-256-ccm aes-128-gcm aes-192-gcm aes-256-gcm)'
'exec:value:(on off)'
@@ -1416,7 +1416,7 @@ while (( $#state )); do
case $MATCH in
*feature@) _wanted states expl state compadd active enabled disabled ;;
*quota@) _alternative \
- 'sizes: :_numbers -M "m\:{a-zA-Z}={A-Za-z}" -u bytes size \:B {k,M,G,T,P,E,Z}{,B}' \
+ 'sizes: :_numbers -M "m:{a-zA-Z}={A-Za-z}" -u bytes size :B {k,M,G,T,P,E,Z}{,B}' \
'properties:property:(none)'
;;
esac