msknathan / mintty

Automatically exported from code.google.com/p/mintty
GNU General Public License v3.0
0 stars 0 forks source link

Support for multiple modifiers with PgUp/PgDn scrolling #367

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Currently you can only select one of Shift, Ctrl or Alt as a modifier when 
using PgUp and PgDn to scroll the terminal's scrollback buffer.

I would like the option to be able to select multiple modifiers.  So that, for 
example, I could use Ctrl+Shift+PgUp/PgDn to scroll the terminal.

Original issue reported on code.google.com by e...@waxworlds.org on 2 Jan 2013 at 9:40

GoogleCodeExporter commented 9 years ago
As it happens, the implementation of the scrolling modifier already allows for 
this. It requires manual editing of the ~/.minttyrc file: set the ScrollMod 
option to the sum of the following values for the required keys: 1 for Shift, 2 
for Alt, 4 for Ctrl.

For example, to set it to Ctrl+Shift:

ScrollMod=5

Original comment by andy.koppe on 3 Jan 2013 at 10:59