Marcin Kasperski
Marcin Kasperski
Example of the feature working under KDE plasma. That green circle measures time until notification will go – and indeed it disappeared while I was writing this sentence. Remaining notifications...
Some technicalities: - `notify-send` on API level documents this setting as https://developer.gnome.org/libnotify/unstable/NotifyNotification.html#notify-notification-set-timeout – again „may not work, but won't spoil things”. - implementation-wise `notify-send`/`libnotify` implement it's API by sending D-Bus...
So, going back to be practical: some devs of notification services implement this setting, others don't implement it for philosophical reasons (because they „know better” when to discard notifications). Services...
I faced the same problem (GeForce GT 710 in my case, `nvidia-smi dmon` fails with `Not supported on the device(s)`). IMHO it doesn't make sense to classify supported and unsupported...
I faced the same error and digged a bit (using nose 1.3.7 pip-installed on my Ubuntu). Here is what happens in my case: 1. I have ./tests directory with various...
I am not 100% sure what exactly triggers the error (probably having utility.py imported from more than one test). Still, the problem disappeared once I changed _dirname_if_file to: ``` def...
Code-wise: the responsible lines are https://github.com/pythonic-emacs/anaconda-mode/blob/master/anaconda-mode.el#L116 and https://github.com/pythonic-emacs/anaconda-mode/blob/master/anaconda-mode.el#L157 and https://github.com/pythonic-emacs/anaconda-mode/blob/master/anaconda-mode.el#L172 If it's to stay more-or-less this way, I'd suggest specyfying both sides, sth like ``` jedi_dep = ('jedi', '0.13.0', '0.18')...
Patch above solves most important part of the issue, by forcing specific jedi version when one is to be installed. Still, there are two minor issues to consider: a) Patched...
I pushed: - additional fix for hg_commit: https://github.com/Mekk/starship/commit/2946290bced690d7ead059e5796beedf9c3bc03e (additional fix related to the issue I am to raise in a moment for hg_branches) - initial implementation of hg_status: https://github.com/Mekk/starship/commit/39333d3daa19283e2a39eefc0a4effdbebcaddb1 (shows...
For some time (emacs update? projectile update? some dep update) projectile-replace partially stopped working for me in the very specific way: while it worked correctly on non-yet open files, it...