David H. Bronke

Results 26 comments of David H. Bronke

Actually, could `AttributeError` be added to the exceptions caught by [i3pystatus/core/desktop.py line 36](https://github.com/enkore/i3pystatus/blob/master/i3pystatus/core/desktop.py#L36)? It already catches `ImportError` and `ValueError`, which would indicate that the necessary library (`python-gobject`) is not installed......

I'm having similar behavior with `nvim-qt`; instead of backgrounding like it does in other shells, it blocks the `xonsh` session until I exit `nvim-qt`. Seems like that's probably a separate...

Actually, it looks like my issue is a duplicate of #2060... I'll try the hack from that issue.

Is anything happening with this? It looks like `slug` hasn't been touched in 9 months.

> As far as I know, this is a known ncurses limitation and there no easy way around it As of version 6.1, ncurses has `direct-color` support; see https://www.gnu.org/software/ncurses/ Would...

This has been frustrating me in Muttator as well; I use Space in Vim to toggle folds, and I'd expect Enter to open the currently-selected email; however, with the following...

This is happening in a Vagrant VM running Ubuntu 20.04.5 LTS, and Erlang is installed using APT. (with the `erlang-solutions` repository) We have the following packages installed: ``` erlang-asn1 erlang-base...

This might be a good candidate for an optional dependency: [node-weak](https://www.npmjs.com/package/weak). If we store the cached documents as weak references, they should still get garbage-collected as usual, and we can...

I realized today that a better fit for the weak reference caching implementation I mentioned above would be ES6's `WeakMap` type. That would take care of pretty much all of...

If that's not feasible at the moment, is there a way to access the node-postgres `client` and `query` objects so the query could be cancelled by user code?