Home

Awesome

Tmux Mighty Scroll

Ultimate solution to enable seamless mouse scroll in tmux.

When no process running, it will scroll over the pane content. Otherwise, depending on process name, it will pass <kbd></kbd> / <kbd></kbd> or <kbd>Page Up</kbd> / <kbd>Page Down</kbd> keys or pass-through mouse scroll events as is.

Features

Limitations

Does not work in panes with open remote connection, since there is no way to relay back to tmux which processes are running in remote shell. See @mighty-scroll-fallback-mode.

Requirements

Installation with Tmux Plugin Manager (recommended)

Add the plugin to the list of TPM plugins in .tmux.conf:

set -g @plugin 'noscript/tmux-mighty-scroll'

Hit prefix + I to fetch the plugin and source it.

Manual Installation

Clone the repo:

$ git clone https://github.com/noscript/tmux-mighty-scroll ~/clone/path

Add this line to the bottom of .tmux.conf:

run '~/clone/path/mighty-scroll.tmux'

Reload tmux environment:

$ tmux source ~/.tmux.conf

Configuration

OptionDefault valueSupported valuesDescription
@mighty-scroll-interval2NumberHow many lines to scroll in by-line and history modes.
@mighty-scroll-select-paneonon, offIf enabled, the pane being scrolled becomes automatically selected.
@mighty-scroll-by-line'man less pager fzf'ListSpace separated list of processes that will be scrolled by line.
@mighty-scroll-by-page'irssi vi'ListSpace separated list of processes that will be scrolled by page.
@mighty-scroll-pass-through'vim nvim'ListSpace separated list of processes that will receive mouse scroll events as is.
@mighty-scroll-fallback-mode'history''history', 'by-line', 'by-page'Scroll mode when in alternate screen but the process didn't match by-line and by-page lists from above.

Scrolling modes:

Example configuration:

set -g mouse on
set -g @mighty-scroll-interval 3
set -g @mighty-scroll-by-line 'man fzf'
set -g @mighty-scroll-select-pane off

Performance caveats

On Linux, make sure to have a C compiler (gcc, clang) available (check with $ cc -v), otherwise a Shell implementation of the process checker will be used, which is about 400% slower!

On macOS there is only a Shell implementation of the process checker at the moment.

License

MIT