Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using tmux with iTerm2.

Clear screen using Ctrl-L works when i'm in bash, but does not work when i'm tailing server logs. How do i fix this?

share|improve this question

1 Answer

Ctrl-L is bound to a readline command. However, while you are running the command that tails your log, bash is not receiving keyboard input. You could suspend the tail with Ctrl-Z, clear the screen with Ctrl-L, and resume the tail with fg.

This is independent of tmux; I don't think tmux has anything like a clear-pane command, instead relying on the shell to handle that for you.

share|improve this answer
This one is the last thing/feature that I am too missing. Is it still not possible to this day? – Millisami Apr 27 at 18:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.