Results 441 comments of lwouis

The commit where I made the queue `concurrent` references this ticket: https://github.com/lwouis/alt-tab-macos/issues/563 But beyond that I can tell you the following: this queue is concurrent because there will be many...

Hi @baest! Thank you for sharing this idea! There is a similar ticket with #178. Before anyone spends time implementing such a feature, I think it is important that there...

I think @baest suggestion is interesting. Are you sure you understand the scenario? They basically would like hardcoded shortcuts like `alt+1` always focuses the first window, `alt+2` the second, etc....

@justinnoel regarding mouse hover, you may be interested in research I did to make it better here: https://github.com/lwouis/alt-tab-macos/issues/286#issuecomment-658685978

Thank you for your feedback! These are all good points. Indeed the UI can be improved. I guess I focused on compactness when developing, but forgot that not everyone is...

@dnivi3 the code change you linked to is this: ![image](https://user-images.githubusercontent.com/106195/152257355-7f24877f-52f5-487a-90b7-b8a7ee716480.png) Changing the order `remove -> add` to `add -> remove`. AltTab already does `add -> remove`: ![image](https://user-images.githubusercontent.com/106195/152257430-d32f87c2-80c2-461a-8f47-9caf40db6a93.png)

@dnivi3 i'm afraid only code contributions would help. Please see https://github.com/lwouis/alt-tab-macos/issues/1179

It seems that we could simply replace the call to `CGSAddWindowsToSpaces` with a call to `CGSMoveWindowsToManagedSpace`. Can anyone confirm this would work?

I experimented with replacing `CGSAddWindowsToSpaces` with `CGSMoveWindowsToManagedSpace`. It's not a 1-to-1 replacement. It doesn't move fullscreen windows. It successfully moves regular windows, and moves them back, but it doesn't do...