git.lucas.co / cce-compositor
Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git

commitf42d11494b7c9825b1f84d2907a8e1b18be57bdc
parent9e8e14deca
authornovakane <[email protected]>
date2021-07-29 18:57
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