-
|
Today I was using Lines 482 to 486 in e8b0682 I looked in the documentation but I didn't see anything about this kind of "spec". I was wondering:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
See Lists and Menus and in particular the subsection Default topic filters. You can
More generally, experiment with typing |
Beta Was this translation helpful? Give feedback.
-
|
I had a similar issue related to I fixed it like this: ;; Change default Forge limits
(set-slot-value forge-list-buffer-default-topic-filters 'limit 1000)
(defun forge--read-topic--customize-limit (args)
(let ((active (caddr args))
(all (cadddr args)))
(set-slot-value active 'limit 1000)
(set-slot-value all 'limit 1000)
(list (car args) (cadr args) active all)))
(advice-add 'forge--read-topic :filter-args
#'forge--read-topic--customize-limit) |
Beta Was this translation helpful? Give feedback.
See Lists and Menus and in particular the subsection Default topic filters.
You can
RETon one of the topic lists. That not only brings up the list but also the filtering menu, where you can select how many topics should be listed.C-c C-c. You can bring up that menu from anywhere, starting withN.forge-status-buffer-default-topic-filters.More generally, experiment with typing
RET,C-u RET,C-returnandC-c C-cwhile point is on a topic or a topic l…