From ccd676e5a939aabafd297fcec1db3058c651a91b Mon Sep 17 00:00:00 2001 From: Felix Bowman Date: Fri, 12 Jul 2024 09:10:40 +0100 Subject: [PATCH] completions: zsh click-method option fix "button-areas" seems to be the argument this command expects instead of "button-area" -- other shells also have the option as "button-areas". --- completions/zsh/_riverctl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completions/zsh/_riverctl b/completions/zsh/_riverctl index ade30e5..73df6b1 100644 --- a/completions/zsh/_riverctl +++ b/completions/zsh/_riverctl @@ -135,7 +135,7 @@ _riverctl() case "$line[2]" in events) _alternative 'input-cmds:args:(enabled disabled disabled-on-external-mouse)' ;; accel-profile) _alternative 'input-cmds:args:(none flat adaptive)' ;; - click-method) _alternative 'input-cmds:args:(none button-area clickfinger)' ;; + click-method) _alternative 'input-cmds:args:(none button-areas clickfinger)' ;; drag) _alternative 'input-cmds:args:(enabled disabled)' ;; drag-lock) _alternative 'input-cmds:args:(enabled disabled)' ;; disable-while-typing) _alternative 'input-cmds:args:(enabled disabled)' ;;