How can I clear scrollback buffer in Tmux?

前端 未结 13 2583
悲&欢浪女
悲&欢浪女 2020-12-12 09:10

FYI, I am using Tmux through the Mac OS X Terminal app.

13条回答
  •  庸人自扰
    2020-12-12 10:12

    I found using send-keys -R to be a little slow - here is another way to clear screen and history with a single command

    bind-key C send-keys "clear && tmux clear-history" \; send-keys "Enter"  
    

    A nested tmux call is used as the more obvious

    bind-key C send-keys "clear" \; send-keys "Enter" \; clear-history

    fails to clear the screen's current text from the history - the clear-history command appears to run in a separate thread to send-keys.

提交回复
热议问题