From 9b8af0900fd8167543e5786b46e70d3f32d45e2b Mon Sep 17 00:00:00 2001 From: Eric Cook Date: Mon, 11 Nov 2024 09:27:52 -0500 Subject: 53144: _sysctl: support completion with the dot delimiter on linux --- Completion/Unix/Command/_sysctl | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'Completion') diff --git a/Completion/Unix/Command/_sysctl b/Completion/Unix/Command/_sysctl index 442953c4d..09995c98e 100644 --- a/Completion/Unix/Command/_sysctl +++ b/Completion/Unix/Command/_sysctl @@ -23,10 +23,18 @@ case $OSTYPE in else args=( ${args:#((#s)|*\))(\*|)--*} ) # remove long options fi + local delimiter=. + sysctlvars=( /proc/sys/**/*(.e*'REPLY=${REPLY#/proc/sys/}'*) ) + if zstyle -t ":completion:${curcontext}:argument-rest" delimiter / || (( ${words[CURRENT][(Ie)/]} )); then + delimiter=/ + else + sysctlvars=(${sysctlvars//\//.}) + fi + _arguments -S -A "-*" : $args \ '(- :)'{-h,--help}'[display help text and exit]' \ '(- :)'{-V,--version}'[display version info and exit]' \ - '*:sysctl variable:_files -W /proc/sys' + "*:sysctl variable:_multi_parts -i -S = -q $delimiter sysctlvars" ;; freebsd<14->.*) args+=( -- cgit v1.2.3