Spencer Phillip Young
Spencer Phillip Young
Yeah, I believe it's a sphinx mechanic behind this. To wit, sphinx won't rebuild documents unless they are new or modified, even if your configuration changes, I think. Per [the...
I made a short Python script to extract some of the info I was looking for from the MD files. Can be seen here: https://gist.github.com/spyoungtech/3506d5ae9a9888ec709c8fcad33cfc34 Could be extended to parse...
@tianon yeah, this is more or less the exact thing I set out to do and accomplished :- ) Thanks to this project, I was able to get historical information...
Sounds reasonable to me. I'd be happy to accept a PR to this effect. IIRC, the steps are setup to match the [webdriverIO steps](https://github.com/webdriverio/cucumber-boilerplate#list-of-predefined-steps) but I don't think there is...
Yeah, I agree this would probably only be applicable for a small subset of all services supported. My own use case would be for MS Teams.
Hmm. I will try to test this later and see if I can reproduce or confirm a fix, but my first thought would be to try prepending your hotkey with...
Yeah, so, when I test this, I can reproduce your problem. I was able to fix it by making the change I described above: ```diff - ahk.add_hotkey("XButton2", callback=scroll_up) + ahk.add_hotkey("~XButton2",...
> The process of sending {WheelUp} seems to break the key state check. @trajano If you mean the key state of a modifier key like `LCtrl`, that is due to...
Glad you were able to get something that works for you. > is not valid as timeout is an integer according to the typings. You're right. The type hint is...
Hmmm. I'm not sure why Python version alone would cause this. I would maybe suspect the version of `gevent` and/or `requests` being used as a possible cause. It might also...