Tell me more ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.

In your .tmux.conf file you can set the window history with something like:

set -g history-limit 4096

Is there a way to set an unlimited history for each window?

share|improve this question

1 Answer

up vote 7 down vote accepted

From what I can tell, you can only do this in a "practical" fashion, by setting the history to an absurdly large number. e.g.:

set -g history-limit 999999999

share|improve this answer

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.