From 879046ef83920e8b78e283c2b9bb3e37214315b4 Mon Sep 17 00:00:00 2001 From: novakane Date: Thu, 29 Jul 2021 18:57:55 +0200 Subject: [PATCH] completions: Remove strict in focus-follows-cursor --- completions/bash/riverctl | 2 +- completions/fish/riverctl.fish | 2 +- completions/zsh/_riverctl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/completions/bash/riverctl b/completions/bash/riverctl index ae7e64b..b5fb34b 100644 --- a/completions/bash/riverctl +++ b/completions/bash/riverctl @@ -53,7 +53,7 @@ function __riverctl_completion () "resize") OPTS="horizontal vertical" ;; "map"|"unmap") OPTS="-release" ;; "attach-mode") OPTS="top bottom" ;; - "focus-follows-cursor") OPTS="disabled normal strict" ;; + "focus-follows-cursor") OPTS="disabled normal" ;; "set-cursor-warp") OPTS="disabled on-output-change" ;; *) return ;; esac diff --git a/completions/fish/riverctl.fish b/completions/fish/riverctl.fish index ed74da0..3609e57 100644 --- a/completions/fish/riverctl.fish +++ b/completions/fish/riverctl.fish @@ -93,7 +93,7 @@ complete -c riverctl -x -n '__fish_seen_subcommand_from swap' -a complete -c riverctl -x -n '__fish_seen_subcommand_from map' -a '-release' complete -c riverctl -x -n '__fish_seen_subcommand_from unmap' -a '-release' complete -c riverctl -x -n '__fish_seen_subcommand_from attach-mode' -a 'top bottom' -complete -c riverctl -x -n '__fish_seen_subcommand_from focus-follows-cursor' -a 'disabled normal strict' +complete -c riverctl -x -n '__fish_seen_subcommand_from focus-follows-cursor' -a 'disabled normal' complete -c riverctl -x -n '__fish_seen_subcommand_from set-cursor-warp' -a 'disabled on-output-change' # Subcommands for 'input' diff --git a/completions/zsh/_riverctl b/completions/zsh/_riverctl index 1b3f8d0..f606565 100644 --- a/completions/zsh/_riverctl +++ b/completions/zsh/_riverctl @@ -136,7 +136,7 @@ _riverctl() map) _alternative 'arguments:optional:(-release)' ;; unmap) _alternative 'arguments:optional:(-release)' ;; attach-mode) _alternative 'arguments:args:(top bottom)' ;; - focus-follows-cursor) _alternative 'arguments:args:(disabled normal strict)' ;; + focus-follows-cursor) _alternative 'arguments:args:(disabled normal)' ;; set-cursor-warp) _alternative 'arguments:args:(disabled on-output-change)' ;; *) return 0 ;; esac