aboutsummaryrefslogtreecommitdiff
path: root/completions
diff options
context:
space:
mode:
authornovakane <mail@novakane.xyz>2021-07-29 18:57:55 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2021-07-29 17:19:06 +0000
commit879046ef83920e8b78e283c2b9bb3e37214315b4 (patch)
treeebcd8658cb4d6da7b5656a41aef486683bdb9b54 /completions
parent00f51e00b43ec59787f632409667f76157727cd1 (diff)
downloadriver-879046ef83920e8b78e283c2b9bb3e37214315b4.tar.gz
river-879046ef83920e8b78e283c2b9bb3e37214315b4.tar.xz
completions: Remove strict in focus-follows-cursor
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