Firmin Martin
Firmin Martin
By "all tests passed" I mean those of `pytest`. `make test` which uses `pylint` gives me runtime error even If I didn't change a python loc.
@ThePonyCoder What's the mime-type of the images you test on? My change excludes those other than `image/png` and `image/jpeg`.
You're right, excluding is in fact not necessary because the process dies naturally if it exceeds the limit. However, it will respawn if the file is still selected. The `ulimit`...
@toonn I ended up with a solution which lets me preview `djvu` files (for the first time!). The first solution is abolished, but I messed up when I tried to...
I'm not aware of any improvement in the meantime, but here is a less laborious way to achieve what you are looking for: 1. Run `pet search | xclip` 2....
Glad to see the improvement over the years ! Thanks for your contribution @RamiAwar !
Please edit the README, it would help people.
Yes, I just checked again. Moreover, when it byte compiles, I have these warnings: ```elisp In valign--tab-advice: valign.el:673:34:Warning: ‘(on-table (valign--at-table-p))’ is a malformed function valign.el:681:12:Warning: reference to free variable ‘beg’...
Update: I just checked `emacs -Q` with `org-mode` and `valign` enabled only. `org-table-next-field` works without any problem. Maybe there is an `org-module` causing the issue.
I think something goes wrong with `when-let` (in `valign--tab-advice`) as the binding of `beg` and `end` is considered as function application. I (randomly) replaced it with `when-let*` and `org-table-next-field` works...