Jonas Bernoulli
Jonas Bernoulli
> It would be very useful to be able to filter topic. Some filtering is possible. Currently this is limited to one filter at a time, but I plan to...
The easiest way is: ```elisp (keymap-set transient-predicate-map "" #'transient--do-stay) ``` I've just added a FAQ entry about that.
- [x] set level per binding - [ ] set level of a group - [ ] if group level disables enabled suffix level, use purple - [ ] allow...
I am currently tackling some of those little nice to have feature requests that have accumulated. In this case, I could not come up with a case where the requested...
@sgpthomas I think it is probably going to be pretty hard to implement this for someone who is not familiar with the code base yet. That doesn't mean you should...
IMO Transient is sufficiently non-modal now.
> A suffix class for minor-mode toggles with the current state indicator would be very welcome too. A simple implementation of that: ``` emacs-lisp (defun demo-minor-mode-description (obj) (let* ((mode (oref...
An idea that might be worth considering, is adding a `:suffix-class` slot to `transient-prefix`: ``` emacs-lisp (transient-define-prefix demo () :transient-suffix 'transient--do-stay :suffix-class 'transient-minor-mode-command [("a" outline-minor-mode) ("b" another-minor-mode)]) ``` Then again,...
Closing in favor of #189.
I've finally implemented this. Should have done so much earlier; it nearly worked on the first try. This is currently opt-in per prefix, and probably will remain that way. See...