我尝试将%
和"
键映射到新命令但没有成功。
到目前为止我尝试的是这些选项:
bind \% split-window -h
和
bind % split-window -h
导致\%
与.tmux.conf:143: unknown key: \%
两者都不起作用。
我想要重新映射的原因: 我想突出显示活动窗格背景。 我已经使用这些选项切换窗格,但是在拆分时显然没有更新。
切换窗格的示例:
bind h select-pane -P 'bg=default' \; select-pane -L \; select-pane -P 'bg=black'
bind j select-pane -P 'bg=default' \; select-pane -D \; select-pane -P 'bg=black'
bind k select-pane -P 'bg=default' \; select-pane -U \; select-pane -P 'bg=black'
bind l select-pane -P 'bg=default' \; select-pane -R \; select-pane -P 'bg=black'
BTW:我有tmux 2.6版
答案 0 :(得分:0)
你的第二行不应该有问题,"
你需要引用它。例如,这适用于2.6:
bind-key '"' split-window \; send-keys "pwd" Enter
bind-key % split-window -h \; send-keys "pwd" Enter