VScode is treated as a dialog/floating #1658
Answered
by
oskarkivra
oskarkivra
asked this question in
potential-bugs
-
BodySteps to reproduce:
Expected result: Actual result: Additional infoI could fix this by adding: [[on-window-detected]]
if.app-id = 'com.microsoft.VSCode'
run = 'layout tiling'Should I create a PR and update isDialogHeuristic and just add: if id == "com.microsoft.VSCode" {
return true
}Or is it more to it? $ aerospace -v
aerospace CLI client version: 0.19.2-Beta d246f250468fc9d427a2eb901d56794af7ac6609
AeroSpace.app server version: 0.19.2-Beta d246f250468fc9d427a2eb901d56794af7ac6609 |
Beta Was this translation helpful? Give feedback.
Answered by
oskarkivra
Aug 27, 2025
Replies: 1 comment 3 replies
-
|
I can't reproduce the issue. VS Code is treated as a normal tiling window on my machine. We even have a test for VS Code: AeroSpace/axDumps/vs_code.json5 Line 95 in ed17fc0 Please attach your |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I now realized that I had
"window.nativeFullScreen": false,in my vscode config which means that vscode don't gets its own (native) workspace when I press the green full screen button.If I set
"window.nativeFullScreen": true,it works withoutrun = 'layout tiling'.Sorry for reporting this but now you know about
window.nativeFullScreen:)