Results 21 comments of Daniel Clemente

By the way, that particular error can be because Emacs now uses cl-defstruct instead of defstruct. Maybe your code needs to do it like this too: ``` (cl-defstruct (flymake-ler (:constructor...

Hi, the guide at [BTR-9](https://openedx.atlassian.net/browse/BTR-9) seems already good. @angonz, what's missing to finish it and finish the task? - do you need a review from people who are new contributors?...

@BbrSofiane By the way, I'm not contributing to do it myself, but I'm looking for tasks to assign to new developers. I looked at #67 and it seems complex for...

@NeOneSoft Hi, unfortunately there aren't any updates from me or OpenCraft regarding this task. I recently left OpenCraft, and the role to find easy tasks for junior developers [seems to...

Next steps for the project could be: - release 1.9.2, with these commits from 2017: https://github.com/gaubert/gmvault/compare/master...gmv-1.9.2, and with any other small change to keep it working under Python2 - make...

I'll clarify that we're dealing not with dropdowns in `` elements, but with CSS menus implemented with the `:hover` pseudo-class. The menu disappears faster than you can click, and the...

The buffer that is opened, is in my case: `mouse-2: execute action^Jmouse-3: menu actions`, where the `^J` is a real newline.

This is a first step, that works. ``` lisp (defun helm-git-grep-process () "Retrieve candidates from result of git grep. It decides whether to use tramp or not, based on the...

The previous code uses `make-process` instead of the `start-process` currently used by `helm-git-grep` . `make-process` supports tramp, though I think it's only in Emacs 27 (from August 2020) or newer

> And get the user via the retrieved EmailAddress object. In doing so, you could be getting a different user than intended (that is: you search `user`, you get `addr.user`,...