Bind more than one command to single key in screen?

纵然是瞬间 提交于 2019-12-06 12:35:25

Pass each command as a separate argument to eval, e.g., eval "echo foo" "echo bar". In your given scenario, I would think that just adding copy after eval would do what you want.

I use

     bind \# eval focus "resize 130"

for example to switch between two vertical split windows and resize, at the same time, the focused window to 130 columns (pressing "C-A #").

So, the concatenation of multiple commands with 'eval' seems to work properly.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!