Adam Porter
Adam Porter
Hi, This seems like a reasonable idea. It would require some significant changes and some careful design. I probably won't have time to work on it soon. In the meantime,...
@deen1 See also my earlier package, `burly`, which allows multiple frames to be bookmarked (all of them, not a subset). Saving a subset should certainly be possible; it's a matter...
I'm definitely in favor of implementing some kind of multi-activity functionality. There are two basic choices as I see it: 1) implement something like "activity groups" on top of existing...
See also: https://github.com/alphapapa/activities.el/discussions/106 In fact, let's consolidate discussion there, please.
Yeah, and we'll probably need to ask @minad and @oantolin to chime in as well.
Since this may need coordination with Embark (or maybe not, I'm not sure), I'm deferring til 0.6.
Hello, I understand what you're wanting to do, but I don't think this is the best way to do it. This function is intended simply to return an activity, and...
@pizzatorque Thanks, I think this is generally okay. Suggestion: use `pcase` to make the code a bit more concise. :)
Here's some simple code to consider, FWIW: ```diff @@ -400,7 +400,9 @@ (defun activities-switch (activity) Interactively, offers active activities." (interactive (list (activities-completing-read - :activities (cl-remove-if-not #'activities-activity-active-p activities-activities :key #'cdr) +...
No problem, there's no urgency here. Relating to `pcase`, I'd suggest starting with `(pcase (length activities-activities) ...)` rather than using destructuring to handle different lengths. Other than that, it would...