You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
iTerm2 has an option to use non-native full screen windows (The option is called "Native full screen windows"). The advantage of using non-native full screen is that such a window does not end up in its own space, as other full screen windows do.
However, it seems window.switcher cannot switch to such full screen windows: Consider the following snippet:
The "allowRoles='*' is required to make the windows even show up in the switcher, but the selected window is not switched to even with this change. If iTerm2 is not the active application when the switcher is used, it is activated, but only the last active window is activated: other iTerm2 windows cannot be activated.
The text was updated successfully, but these errors were encountered:
afaik, hs.hints is also affected by this. Basically, I have hs.hints.windowHints(nil, focusWindow), and iTerm2 window is not in the list. If there is some workaround, I'd be glad to know :)
iTerm2 has an option to use non-native full screen windows (The option is called "Native full screen windows"). The advantage of using non-native full screen is that such a window does not end up in its own space, as other full screen windows do.
However, it seems window.switcher cannot switch to such full screen windows: Consider the following snippet:
switchers = hs.window.switcher.new(hs.window.filter.new({iTerm2={allowRoles='*'}}))
hs.hotkey.bind('alt', '.', nil, function() switchers:next() end)
The "allowRoles='*' is required to make the windows even show up in the switcher, but the selected window is not switched to even with this change. If iTerm2 is not the active application when the switcher is used, it is activated, but only the last active window is activated: other iTerm2 windows cannot be activated.
The text was updated successfully, but these errors were encountered: