Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "scroll caching" functionality, similar to mark jumping in iTerm2 #626

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions doc/terminator.1
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,12 @@ Insert terminal number, i.e. 1 to 12.
.TP
.B Super+0
Insert padded terminal number, i.e. 01 to 12.
.TP
.B Ctrl+Up
Scroll back up one item in the cache.
.TP
.B Ctrl+Down
Scroll back down one item in the cache.
.SS Grouping & Broadcasting
.PP
The following items relate to helping to focus on a specific terminal.
Expand Down
4 changes: 4 additions & 0 deletions doc/terminator_config.5
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,10 @@ Default value: \fBTrue\fR
If true, whenever there's new output the terminal will scroll to the bottom.
Default value: \fBFalse\fR
.TP
.B scroll_cache \fR(boolean)
If true, whenever return is pressed to run a command, remember the scroll location to jump back to later.
Default value: \fBFalse\fR
.TP
.B scrollback_lines
Number of scrollback lines to keep around. You can scroll back in the terminal by this number of lines; lines that don't fit in the scrollback are discarded. Warning: with large values, rewrapping on resize might be slow.
Default value: \fB500\fR
Expand Down
Loading