Behaviour of ctrl+mouse_scroll
Bug #1505292 reported by
Mattias Andrée
This bug affects 4 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Terminator |
New
|
Wishlist
|
Unassigned |
Bug Description
Recently, Terminator changed behaviour for
ctrl+mouse_scroll. The new behaviour is to change font
size. I must say, I really dislike this; I rather it send a
number of ctrl+up/down ("\e[$n;5A", "\e[$n;5B").
I cannot find any setting for changing this. Would you
consider adding this, or point be to it if it does exist?
To post a comment you must log in.
I thought the Ctrl-mousewheel zoom was rather neat myself. It is a common idiom in many programs to zoom in/out using that combo.
You say you want the control + up/down escape codes. Can you explain: are these defaults used in a particular program you use? A script you wrote yourself?
It is currently hardcoded in terminal.py, Terminal class, on_mousewheel method. The code is fairly readable. The simplest hack fix would be to insert comment out the line around 349: vte.connect( 'scroll- event', self.on_mousewheel)
self.
This will disable the zooming. For me I do not get any Ctrl-Up/Down sequences when disabling this. This is custom to your setup?