如何隐藏“确认'设置'? (y / n)”,用于`tmux conf'set -g mouse on'`?

问题描述 投票:0回答:1

我希望在不提示的情况下使这两个别名起作用:

alias txmon="tmux conf 'set -g mouse on'  &&  tmux conf 'set -g mouse-utf8 on'"
alias txmoff="tmux conf 'set -g mouse off'  &&  tmux conf 'set -g mouse-utf8 off'"

但是在tmux会话中运行时,在左下角的棕色字体产生此提示:

Confirm 'set'? (y/n)

我在man tmux或World Wlid网站上都找不到任何东西;]

linux bash command-line-interface tmux
1个回答
0
投票

conf与命令confirm-before匹配,这就是它的作用-要求确认。

如果您不希望它问,请不要使用该命令:

alias txmon="tmux set -g mouse on \; set -g mouse-utf8 on"

请注意,几年前mouse-utf8已从tmux中删除,因此您应该检查是否仍需要它。

此外,如果要切换选项,则可以不选择打开或关闭:tmux set -g mouse

最新问题
© www.soinside.com 2019 - 2024. All rights reserved.