aboutsummaryrefslogtreecommitdiff
path: root/completions
diff options
context:
space:
mode:
Diffstat (limited to 'completions')
-rw-r--r--completions/bash/riverctl2
-rw-r--r--completions/fish/riverctl.fish2
-rw-r--r--completions/zsh/_riverctl2
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