We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ef638c commit 5b8b591Copy full SHA for 5b8b591
embed/mux.zsh
@@ -1,5 +1,5 @@
1
#compdef mux
2
-#autoload
+#definition manage tmux sessions
3
4
local -a subcmds
5
@@ -14,7 +14,7 @@ _arguments '--version[Current version]' \
14
'*:: :->subcmds' && return 0
15
16
if (( CURRENT == 1 )); then
17
- _describe "mux" subcmds
+ _describe -t subcmds "mux subcommands" subcmds
18
return
19
fi
20
main.go
@@ -85,7 +85,5 @@ func completion(shell string) {
85
switch shell {
86
case "zsh":
87
fmt.Print(embed.MuxZsh)
88
- default:
89
- fmt.Print("# noop")
90
}
91
0 commit comments