-
Hi, all. I started to do discussion inside forge and it is awesome! For issues and PR, I noticed that I can choose a assignee from a list. While in the comment/discussion, it seems no such autocomplete for user handle. What method can I manually invoke to get the names, or I need to write something like this function? (defun forge-edit-topic-assignees (n)
"Edit the assignees of the current topic.
If there is no current topic or with a prefix argument read a
topic N and modify that instead."
(interactive (list (forge-read-topic "Edit assignees of")))
(let* ((topic (forge-get-topic n))
(repo (forge-get-repository topic))
(value (closql--iref topic 'assignees)) |
Beta Was this translation helpful? Give feedback.
Answered by
tarsius
Sep 13, 2021
Replies: 1 comment 1 reply
-
This would have to be implemented using a function similar to |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
braineo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This would have to be implemented using a function similar to
forge-topic-completion-at-point
and adding that tocompletion-at-point-functions
for the appropriate mode.