From: Zbigniew Jędrzejewski-Szmek Date: Tue, 16 Nov 2021 11:20:26 +0000 (+0100) Subject: shell-completion: fix indentation X-Git-Tag: v250-rc1~235^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=07e8bdefdbd2a0a4fe59008b286303f053ba9509;p=thirdparty%2Fsystemd.git shell-completion: fix indentation --- diff --git a/shell-completion/zsh/_udevadm b/shell-completion/zsh/_udevadm index eac56c70484..14efe248086 100644 --- a/shell-completion/zsh/_udevadm +++ b/shell-completion/zsh/_udevadm @@ -103,20 +103,20 @@ _udevadm_test-builtin(){ (( $+functions[_udevadm_mounts] )) || _udevadm_mounts(){ - local dev_tmp dpath_tmp mp_tmp mline + local dev_tmp dpath_tmp mp_tmp mline tmp=( "${(@f)$(< /proc/self/mounts)}" ) dev_tmp=( "${(@)${(@)tmp%% *}:#none}" ) mp_tmp=( "${(@)${(@)tmp#* }%% *}" ) - local MATCH - mp_tmp=("${(@q)mp_tmp//(#m)\\[0-7](#c3)/${(#)$(( 8#${MATCH[2,-1]} ))}}") - dpath_tmp=( "${(@Mq)dev_tmp:#/*}" ) - dev_tmp=( "${(@q)dev_tmp:#/*}" ) + local MATCH + mp_tmp=("${(@q)mp_tmp//(#m)\\[0-7](#c3)/${(#)$(( 8#${MATCH[2,-1]} ))}}") + dpath_tmp=( "${(@Mq)dev_tmp:#/*}" ) + dev_tmp=( "${(@q)dev_tmp:#/*}" ) - _alternative \ - 'device-paths: device path:compadd -a dpath_tmp' \ - 'directories:mount point:compadd -a mp_tmp' + _alternative \ + 'device-paths: device path:compadd -a dpath_tmp' \ + 'directories:mount point:compadd -a mp_tmp' } (( $+functions[_udevadm_commands] )) ||