发送 tmux 命令到 tmuxinator
Send tmux command to tmuxinator
具体来说,我需要创建一个配置文件,默认情况下会在显示时钟时出现一些小问题,可以使用 C-b t
触发。但是,我找不到这样做的方法。
在 this GitHub issue comment 中,该项目的一位合作者说它可以像常规命令一样定义,但在我的 ZSH 设置中,它根本不起作用,说 "zsh: Command not found: C-b".
有没有人碰巧知道我怎样才能做到这一点?
谢谢!!!
windows:
- work:
panes:
- tmux clock-mode
- ipython
以下是在 tmux 会话中键入 tmux clock-mode
时发生的情况:
- 当前 tmux 客户端连接到 tmux 服务器
- 附加到当前(或最近的)会话
- 由于省略了
-t
参数,当前 window 中当前活动的窗格用于 clock-mode
命令。
查看 $man tmux
中的会话以了解更多详细信息。
COMMANDS
This section contains a list of the commands supported by tmux. Most commands accept the optional -t argument with one of target-client, target-session
target-window, or target-pane. These specify the client, session, window or pane which a command should affect. target-client is the name of the pty(7)
file to which the client is connected, for example either of /dev/ttyp1 or ttyp1 for the client attached to /dev/ttyp1. If no client is specified, the
current client is chosen, if possible, or an error is reported. Clients may be listed with the list-clients command.
具体来说,我需要创建一个配置文件,默认情况下会在显示时钟时出现一些小问题,可以使用 C-b t
触发。但是,我找不到这样做的方法。
在 this GitHub issue comment 中,该项目的一位合作者说它可以像常规命令一样定义,但在我的 ZSH 设置中,它根本不起作用,说 "zsh: Command not found: C-b".
有没有人碰巧知道我怎样才能做到这一点?
谢谢!!!
windows: - work: panes: - tmux clock-mode - ipython
以下是在 tmux 会话中键入 tmux clock-mode
时发生的情况:
- 当前 tmux 客户端连接到 tmux 服务器
- 附加到当前(或最近的)会话
- 由于省略了
-t
参数,当前 window 中当前活动的窗格用于clock-mode
命令。
查看 $man tmux
中的会话以了解更多详细信息。
COMMANDS This section contains a list of the commands supported by tmux. Most commands accept the optional -t argument with one of target-client, target-session target-window, or target-pane. These specify the client, session, window or pane which a command should affect. target-client is the name of the pty(7) file to which the client is connected, for example either of /dev/ttyp1 or ttyp1 for the client attached to /dev/ttyp1. If no client is specified, the current client is chosen, if possible, or an error is reported. Clients may be listed with the list-clients command.