Originally created by @dustinlacewell on GitHub (Sep 20, 2022).
Describe the bug
Very strange behavior related to workspaces. When doing FocusWorkspace or SendToWorkspace things go crazy and windows get moved to the wrong workspace, minimzed or maximized when they're not supposed to etc. See video below.
To Reproduce
Steps to reproduce the behavior:
Here is my configuration:
The bindings above are missing return statements, which I believe are required when doing multiline remapping with AHK; I imagine it should look more like this:
@LGUG2Z commented on GitHub (Sep 20, 2022):
This looks like it could be a case of user configuration error.
```ahk
#!^a::
FocusWorkspace(0)
+#!^a::
SendToWorkspace(0)
#!^s::
FocusWorkspace(1)
+#!^s::
SendToWorkspace(1)
```
The bindings above are missing `return` statements, which I believe are required when doing multiline remapping with AHK; I imagine it should look more like this:
```ahk
#!^a::
FocusWorkspace(0)
return
+#!^a::
SendToWorkspace(0)
return
#!^s::
FocusWorkspace(1)
return
+#!^s::
SendToWorkspace(1)
return
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @dustinlacewell on GitHub (Sep 20, 2022).
Describe the bug
Very strange behavior related to workspaces. When doing
FocusWorkspaceorSendToWorkspacethings go crazy and windows get moved to the wrong workspace, minimzed or maximized when they're not supposed to etc. See video below.To Reproduce
Steps to reproduce the behavior:
Here is my configuration:
Expected behavior
Windows are moved between workspaces. Workspaces are displayed normally.
Screenshots and Videos
This is just doing FocusWorkspace(0) over and over:
https://user-images.githubusercontent.com/53952/191327039-f8904ec4-85ea-4e9c-8a85-ebde0de2e0e3.mp4
Operating System
Additional context
I noticed some errors in the log:
Here is the log from a single press of
FocusWorkspace(0):@LGUG2Z commented on GitHub (Sep 20, 2022):
This looks like it could be a case of user configuration error.
The bindings above are missing
returnstatements, which I believe are required when doing multiline remapping with AHK; I imagine it should look more like this:@dustinlacewell commented on GitHub (Sep 20, 2022):
This was it! Thank you, 🙏