bindsym --release behavior different from sway's
#373
dawsers
announced in
Announcements
Replies: 2 comments 2 replies
|
This is awesome! Thank you! |
0 replies
|
This doesn't always fire. I've tried to reproduce it, but there doesn't seem to be any consistency to it. Nothing in the logs. |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Since 8907f49, scroll's
bindsym --releasebehavior is different than sway's.In sway, a release key binding triggers when you release the main key associated to the binding (non-modifier key). In scroll, now you need to release every key of the binding, in any order. This lets you do things like the following temporary overview mode:
You press
$mode+tabto enter overview mode. While keeping$modpressed, you use the arrow keys to change focus, and as soon as you release$mod, you will exit overview mode. With this feature you can create workflows similar to other desktop environments, Atl+Tab, etc.All reactions