summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2017-08-03 22:37:41 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2017-08-08 13:52:04 +0000
commite2124c47193f57bdc5a19061e2e9bc6969fda32e (patch)
tree116759a7000c6ce8aed66fea968e3d0dfbf3e536
parent36185563f8fd263cf5138c69c0edd17c33cda1d2 (diff)
downloadzsh-e2124c47193f57bdc5a19061e2e9bc6969fda32e.tar.gz
zsh-e2124c47193f57bdc5a19061e2e9bc6969fda32e.tar.xz
zsh-e2124c47193f57bdc5a19061e2e9bc6969fda32e.zip
41486: _tmux: Correct completions of new-window, split-window, respawn-window, respawn-pane.
This follows up to 41467 which patched new-session.
-rw-r--r--ChangeLog3
-rw-r--r--Completion/Unix/Command/_tmux8
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c318afa5..e6709f316 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2017-08-08  Daniel Shahaf  <d.s@daniel.shahaf.name>
 
+	* 41486: Completion/Unix/Command/_tmux: Correct completions of
+	new-window, split-window, respawn-window, respawn-pane.
+
 	* unposted: Config/version.mk: Post-release version number bump
 	to 5.4-dev-0.
 
diff --git a/Completion/Unix/Command/_tmux b/Completion/Unix/Command/_tmux
index 5f5bea922..7ef20c666 100644
--- a/Completion/Unix/Command/_tmux
+++ b/Completion/Unix/Command/_tmux
@@ -540,7 +540,7 @@ _tmux-new-window() {
     '-n+[specify a window name]:window name' \
     '-P[print information about new window after it is created]' \
     '-t+[specify target window]:window:__tmux-windows' \
-    '*:: :_cmdstring'
+    '*:: :_cmdambivalent'
 }
 
 _tmux-next-layout() {
@@ -628,7 +628,7 @@ _tmux-respawn-pane() {
   _arguments -s -A "-*" -S \
     '-k[kill window if it is in use]' \
     '-t+[specify target pane]:pane:__tmux-pane' \
-    ':command:_cmdstring'
+    ':command:_cmdambivalent'
 }
 
 _tmux-respawn-window() {
@@ -636,7 +636,7 @@ _tmux-respawn-window() {
   _arguments -s -A "-*" -S \
     '-k[kill window if it is in use]' \
     '-t+[specify target window]:window:__tmux-windows' \
-    ':command:_cmdstring'
+    ':command:_cmdambivalent'
 }
 
 _tmux-rotate-window() {
@@ -855,7 +855,7 @@ _tmux-split-window() {
     "-l[define new pane's size]:size" \
     "-p[define new pane's size in percent]:size (percentage)" \
     '-t+[specify target pane]:pane:__tmux-panes' \
-    ':command:_cmdstring'
+    ':command:_cmdambivalent'
   # Yes, __tmux-panes is correct here. The behaviour was changed
   # in recent tmux versions and makes more sense. Except that
   # changing the command's name might annoy users. So it stays like