在 中.tmux.conf
,以下内容按预期工作:
bind -n C-\ display-message 'hello'
我正在尝试绑定变量中定义的键,例如key
。我做了以下两个尝试:
a=C-\
bind -n $a display-message 'hello'
# Produces: unknown command: -n
a=C-\\
bind -n $a display-message 'hello'
# Produces: unknown key: C-\\
有办法实现我想要的吗?
答案1
我想在第一种情况下,\
换行符之前会使行继续或其他什么。
这应该有效:
a='C-\'
bind -n $a display-message 'hello'