freerror
freerror
I can replicate this issue: open conemu with powershell/cmd session. Ssh remote to another computer. Open nvim, start scrolling...weird artifacts occur etc. After a "clear" the session itself comes right,...
@Owen-Davies my only suggestion would be a re-write to the the hiding mechanism. Why not hide the start bar, and minimize clients normally in place of "hiding" them? I would...
There are also applications that enable any window to be minimized to tray; these may suffer from the same problems if they utilize "SW_HIDE" which isn't fully supported in some...
I didn't end up testing this but that ("hidden" virtual desktop) does seem like a good option for those that like their windows taskbar visible awesome-style. I suspected the same...
When I looked at it did look there was quite a tight coupling between the representation and the actual value as stored in state. If you know a way @brendonshih...
> Unlikely to happen, because we have no way of knowing which century we should assume. > > `new Date().getYear()` returns `122` at the moment of writing. So we wouldn't...
> What worries me more is "un-formatting" it... Hmm, if it's not currently the case, maybe the component could store the date in a "raw" format but a separate property...
You would probably do that something like this: ``` import keyboard def test_func(): print("Test") keyboard.write("Test") keyboard.add_hotkey("Ctrl+Alt+p", test_func) keyboard.wait() ``` But I would expect your program to work assuming you uncomment...
Oh you beat me to it, good on ya.