* Re: [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark?
2024-12-13 18:41 ` [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? (was: Fwd: Org-cite: Replace basic follow-processor with transient menu?) Ihor Radchenko
@ 2024-12-13 22:09 ` Gabriel Santos
2024-12-14 9:57 ` Ihor Radchenko
2024-12-13 22:57 ` Suhail Singh
2024-12-14 10:50 ` indieterminacy
2 siblings, 1 reply; 10+ messages in thread
From: Gabriel Santos @ 2024-12-13 22:09 UTC (permalink / raw)
To: Ihor Radchenko; +Cc: emacs-devel, emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 6022 bytes --]
Greetings,
I'll go through the examples found on this e-mail and
suggest the menu command I find best for the proposed
scenarios.
Below is how I think these options could be used.
context-menu-mode
No particular target, should mostly be used for actions on
the whole buffer or on a region, or all particular elements
defined.
Example: Org -> Headings -> Demote Headings
transient
Also no particular target, but should be used for commands that
would require a menu for interaction, such as exporting and capturing.
Example 1: org-export-*dispatch* -> transient menu
Example 2: org-capture -> transient menu
Example 3: org-attach -> transient menu
which-key
On a target, list actions that could be performed on it.
embark
Can be used to replace which-key in customization.
But, despite saying this, I have it configured to use which-key as its menu.
Ihor Radchenko <yantar92@posteo.net> writes:
> I have raised the topic of refactoring Org mode menu systems during
> EmacsConf in <https://emacsconf.org/2024/talks/org-update/>
I saw the talk live, really excited for the future of Org!
> The initial idea was replacing the self-written menu code in Org with
> built-in transient.el.
>
> Later, during OrgMeetup a number of people raised concerns that
> transient may sometimes be an overkill, and that some people may prefer
> alternative UIs. In particular, embark and context-menu-mode were
> mentioned.
Personally, I'd prefer for built-in packages/functionality to be considered first.
The consideration for context-menu for me is particularly intriguing, as there's
a lot of functionality already included in Org's context menu.
> (I am CCing the discussion participants and potentially interested
> maintainers)
Hope to see their responses to this.
I'm just a common user, so my opinions should be taken with a grain of salt.
> In Org mode (although not only in Org mode, looking at the success of
> embark.el), we often have a UI model where users call an "action"
> command (like org-ctrl-c-ctrl-c or org-open-at-point) followed by
> interactive selection among multiple actions.
I don't often use org-ctrl-c-ctrl-c, but now that I've seen the interaction
menu for properties as an example, I'd say the best option for it would be
which-key, as it's a simpler menu.
> For example, org-open-at-point on a heading with multiple links inside
> will raise a section buffer listing all the links - pressing a number
> will open the corresponding link.
I'd consider which-key again for this.
> Another example (see the example patch below), which is a
> work-in-progress patch for Org citation system, is "following" a
> citation. To "follow" citation may mean multiple things including but
> not limited to: (1) going to citation record in the bibliography file;
> (2) following URL; (3) downloading .pdf file for a citation; etc.
> **The list of "follow" actions may be customized by users**
This is similar to the functions available in the following package:
<https://github.com/emacs-citar/citar>
It also allows for opening the bibliography, links, notes, and files
connected to the citation.
I use it with embark:
<https://github.com/emacs-citar/citar/blob/main/citar-embark.el>
> The general UI flow in these scenarios will be:
>
> 1. User calls "action" with cursor at certain syntax element
> 2. Action menu is displayed, showing the available actions/targets (dynamically built)
> 3. User selects the action/target
I'm not sure what the best option would be for displaying targets, but which-key
should be able to cover most cases that would require "simpler" menus for actions.
I'd also add in that it could be considered over transient if its dynamically built.
I tend to associate transient with "static" options.
> This UI flow can be implemented using context menus, which-key popups,
> transient menus, and also using embark (where the way menu is displayed
> can be customized).
>
> All the 4 approaches represent different UI models with various
> strengths and weaknesses:
>
> - transient has a very flexible layout builder where the menu items can
> be arranged granularly, but intercepts the main loop disrupting
> certain keyboard-based workflows
> - which-key does not stand on the way and integrates well into Emacs'
> key binding model, but provides little flexibility for menu layout
It has options for setting the pop-up type and position. Could this help with
flexibility?
> - embark stays in the middle between which-key and transient, making use
> of transient keymaps and allowing a custom menu renderer
> - context-menu-mode provides mouse experience
>
> I am wondering if we can work out some universal API to plug the
> described action->menu->selection model into the UI that user prefers.
I'd say that this is the best options out of all of them, but, as you said:
> "I am wondering if we can work out [...]"
This would require considerable work.
> Tentatively, I am thinking about the following:
>
> For a given Emacs "prefix" command (e.g. org-open-at-point), we define a
> set of customizations:
>
> 1. List of possible actions: ((name1 . action1 props) (name2 . action2 ...) ...)
> PROPS is a plist defining extra properties like key-binding, display
> string, maybe something else to be used in the future.
> 2. Menu interface to use (transient, context-menu, embark, which-key)
> 3. Layout settings for the specific interfaces. For example, transient
> layout definition.
>
> WDYT?
>
> Best,
> Ihor
On this described state (list of actions), which-key would be the
best option according to my definition.
But, on the current state of org-open-at-point (shows more targets),
as I commented previously, there's no menu that I associate with:
"Act on target, display a list of other targets."
Maybe context-menu would be the closest one, but I wouldn't consider
which-key or embark, these are more related to functions.
Regards,
--
*Gabriel Santos*
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark?
2024-12-13 18:41 ` [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? (was: Fwd: Org-cite: Replace basic follow-processor with transient menu?) Ihor Radchenko
2024-12-13 22:09 ` [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? Gabriel Santos
@ 2024-12-13 22:57 ` Suhail Singh
2024-12-14 9:59 ` Ihor Radchenko
2024-12-14 10:50 ` indieterminacy
2 siblings, 1 reply; 10+ messages in thread
From: Suhail Singh @ 2024-12-13 22:57 UTC (permalink / raw)
To: Ihor Radchenko
Cc: Tor-björn Claesson, emacs-devel, emacs-orgmode,
Philip Kaludercic, Omar Antolín Camarena, Jonas Bernoulli,
Juri Linkov, karthikchikmagalur, Visuwesh, charles.choi,
Justin Burkett
Ihor Radchenko <yantar92@posteo.net> writes:
> Tentatively, I am thinking about the following:
>
> For a given Emacs "prefix" command (e.g. org-open-at-point), we define a
> set of customizations:
>
> 1. List of possible actions: ((name1 . action1 props) (name2 . action2 ...) ...)
> PROPS is a plist defining extra properties like key-binding, display
> string, maybe something else to be used in the future.
> 2. Menu interface to use (transient, context-menu, embark, which-key)
> 3. Layout settings for the specific interfaces. For example, transient
> layout definition.
>
> WDYT?
By "display string" do you mean a description of the action? Or would
that be additional?
Hopefully, the description of each action will be a first-class member
of the "List of possible actions". Or is the intent that the
description be taken from the form representing an action (e.g. a defun,
a lambda etc).
--
Suhail
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? (was: Fwd: Org-cite: Replace basic follow-processor with transient menu?)
@ 2024-12-14 0:37 Psionic K
2024-12-14 9:48 ` Ihor Radchenko
0 siblings, 1 reply; 10+ messages in thread
From: Psionic K @ 2024-12-14 0:37 UTC (permalink / raw)
To: Ihor Radchenko
Cc: charles.choi, Emacs developers, emacs-orgmode, emacs.transient,
juri, justin, karthikchikmagalur, omar, Philip Kaludercic,
tclaesson, visuweshm
[-- Attachment #1: Type: text/plain, Size: 4497 bytes --]
> intercepts the main loop
This is optional, per transient menu (prefix) and the commands within it.
A common technique, used by magit and others, is to have entry point
commands in the regular keymap so that many commands can be started without
traversing several menus. If you want normal un-shadowed bindings active
at the same time, the prefix has a slot called `transient-non-suffix' that
is similar to the `:suppress' option in keymaps or setting a `t'
`undefined' binding in a keymap. However the results of mixing self-insert
and modal or modal and another modal are generally bad.
The biggest drawbacks of transient are well known in Github issues:
- Which-key discovery of Transient keymaps
- Transient binding generation based on keymaps
- Normalizing how to obtain arguments when being called independently as an
interactive command versus being called as a Transient suffix
In the short term, to punch the first two problems in the face, override
the `:setup-children' method. If you know what keymap you are borrowing
bindings from, you can synchronize it at display time.
Regarding the normalization with interactive, if you are not using
transient infixes and instead lean on the :info class and dynamic
:descriptions, you can display state and store it using normal buffer-local
and defvar techniques, providing visual feedback for what might be hidden
states after the user gets more familiar. The commands work with or
without a prefix currently active. In this usage model, you only use
Transient for its flow control, display, and layout. I find the infix
system to be somewhat of a distraction if you are not actually building a
CLI wrapper, but you can definitely make suffixes and descriptions "smart"
by reading a scope from the prefix and making custom infixes that also
obtain more state when displayed. A custom infix for storing org elements
or objects could certainly be a thing.
I think deeper user customization is an area that is weak with transient,
but only because the user actually needs to have a vision for how they want
to build up stateful commands. If you're just doing prefix maps, transient
and hydra are equivalent concepts. Transient becomes differentiated when
you consider commands that build up state for other commands. Executing
slightly modified command sentences in rapid succession is not something
the user customizes casually. Complex commands only make sense when the
context they depend on is populated, which naturally decides the menu flow.
> I am wondering if we can work out some universal API to plug the
> described action->menu->selection model into the UI that user prefers.
>
> Tentatively, I am thinking about the following:
>
> For a given Emacs "prefix" command (e.g. org-open-at-point), we define a
> set of customizations:
>
> 1. List of possible actions: ((name1 . action1 props) (name2 . action2
...) ...)
> PROPS is a plist defining extra properties like key-binding, display
> string, maybe something else to be used in the future.
> 2. Menu interface to use (transient, context-menu, embark, which-key)
> 3. Layout settings for the specific interfaces. For example, transient
> layout definition.
Well, I'm sure you know that transient has more decisions encoded in the
layout than the other options. If the data going in is a least common
denominator, you need supplementary data elsewhere to achieve a good result.
What I fear is a system like org-speed-keys which relies on an override of
`org-self-insert' and is yet another orthogonal system. I much prefer the
Lispy style of integration, which uses a keymap. Using keymaps, even if
they are not active, to generate transient key bindings via :setup-children
is the best way to have certain integration with other Emacs tools.
How people can collaborate with me on general questions of design is to
open issues on the Transient Showcase. Either I can point to an existing
example or make a new one. I've been giving some thought to how to
demonstrate an idea more generally of composing multiple commands and
manipulating the composition to dispatch complex commands in rapid
succession with minor differences. I personally have my own org speed keys
solution that I've been developing for yet another more complex package I
call Afterburner. These projects can become stuck in design hell when I
don't have the prodding from other problem analysis, so please, bother me.
https://github.com/positron-solutions/transient-showcase
[-- Attachment #2: Type: text/html, Size: 4850 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? (was: Fwd: Org-cite: Replace basic follow-processor with transient menu?)
2024-12-14 0:37 [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? (was: Fwd: Org-cite: Replace basic follow-processor with transient menu?) Psionic K
@ 2024-12-14 9:48 ` Ihor Radchenko
2024-12-14 10:12 ` [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? Philip Kaludercic
0 siblings, 1 reply; 10+ messages in thread
From: Ihor Radchenko @ 2024-12-14 9:48 UTC (permalink / raw)
To: Psionic K
Cc: charles.choi, Emacs developers, emacs-orgmode, emacs.transient,
juri, justin, karthikchikmagalur, omar, Philip Kaludercic,
tclaesson, visuweshm
Psionic K <psionik@positron.solutions> writes:
>> intercepts the main loop
> This is optional, per transient menu (prefix) and the commands within it.
> A common technique, used by magit and others, is to have entry point
> commands in the regular keymap so that many commands can be started without
> traversing several menus. If you want normal un-shadowed bindings active
> at the same time, the prefix has a slot called `transient-non-suffix' that
> is similar to the `:suppress' option in keymaps or setting a `t'
> `undefined' binding in a keymap. However the results of mixing self-insert
> and modal or modal and another modal are generally bad.
Thanks for the info!
So, we can have something like
:transient-non-suffix 'leave
and then pressing something that is not bound to a suffix or infix will
run the parent keymap command, automatically leaving transient state.
> - Normalizing how to obtain arguments when being called independently as an
> interactive command versus being called as a Transient suffix
I think it is addressed in the example patch I shared. There, we pass
around the original function arguments via macro expansion (!arg-name)
["Open" ("b" "bibliography entry" (org-cite-basic-goto !citation !prefix))]
> In the short term, to punch the first two problems in the face, override
> the `:setup-children' method. If you know what keymap you are borrowing
> bindings from, you can synchronize it at display time.
This is also partially solved. We do use :setup-children, although the
initial implementation simply reads user customization into menu layout.
I believe that we can read a keymap in similar way and generate
transient layout automatically.
> What I fear is a system like org-speed-keys which relies on an override of
> `org-self-insert' and is yet another orthogonal system. I much prefer the
> Lispy style of integration, which uses a keymap. Using keymaps, even if
> they are not active, to generate transient key bindings via :setup-children
> is the best way to have certain integration with other Emacs tools.
May you please elaborate?
--
Ihor Radchenko // yantar92,
Org mode maintainer,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark?
2024-12-13 22:09 ` [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? Gabriel Santos
@ 2024-12-14 9:57 ` Ihor Radchenko
2024-12-14 10:59 ` Gabriel Santos
0 siblings, 1 reply; 10+ messages in thread
From: Ihor Radchenko @ 2024-12-14 9:57 UTC (permalink / raw)
To: Gabriel Santos; +Cc: emacs-devel, emacs-orgmode
Gabriel Santos <gabrielsantosdesouza@disroot.org> writes:
> context-menu-mode
> No particular target, should mostly be used for actions on
> the whole buffer or on a region, or all particular elements
> defined.
>
> Example: Org -> Headings -> Demote Headings
> ...
> Personally, I'd prefer for built-in packages/functionality to be considered first.
We will definitely try to support built-ins first and foremost.
I mentioned embark as an example of alternative UI.
Also, embark might be a candidate for upstreaming.
> The consideration for context-menu for me is particularly intriguing, as there's
> a lot of functionality already included in Org's context menu.
This is not right. I think you are confusing ordinary menu bar and
context menu. Context menu is "right click" menu that will display
different items depending on where you click. Org mode currently does
not have context-menu-mode integration (we should fix this deficiency)
> I don't often use org-ctrl-c-ctrl-c, but now that I've seen the interaction
> menu for properties as an example, I'd say the best option for it would be
> which-key, as it's a simpler menu.
My conclusion so far is that there is no "best" for every user. We
should ideally support user-customized menu UI. The main question is how
to do it.
>> This UI flow can be implemented using context menus, which-key popups,
>> transient menus, and also using embark (where the way menu is displayed
>> can be customized).
>>
>> All the 4 approaches represent different UI models with various
>> strengths and weaknesses:
> ...
> It has options for setting the pop-up type and position. Could this help with
> flexibility?
May you elaborate what "it" refers to?
--
Ihor Radchenko // yantar92,
Org mode maintainer,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark?
2024-12-13 22:57 ` Suhail Singh
@ 2024-12-14 9:59 ` Ihor Radchenko
0 siblings, 0 replies; 10+ messages in thread
From: Ihor Radchenko @ 2024-12-14 9:59 UTC (permalink / raw)
To: Suhail Singh
Cc: Tor-björn Claesson, emacs-devel, emacs-orgmode,
Philip Kaludercic, Omar Antolín Camarena, Jonas Bernoulli,
Juri Linkov, karthikchikmagalur, Visuwesh, charles.choi,
Justin Burkett
Suhail Singh <suhailsingh247@gmail.com> writes:
>> For a given Emacs "prefix" command (e.g. org-open-at-point), we define a
>> set of customizations:
>>
>> 1. List of possible actions: ((name1 . action1 props) (name2 . action2 ...) ...)
>> PROPS is a plist defining extra properties like key-binding, display
>> string, maybe something else to be used in the future.
>> 2. Menu interface to use (transient, context-menu, embark, which-key)
>> 3. Layout settings for the specific interfaces. For example, transient
>> layout definition.
>
> By "display string" do you mean a description of the action? Or would
> that be additional?
I mean some way to define how the action should be displayed in the
menu. It may be a full string or just a description to be appended to
the action name, or something else.
> Hopefully, the description of each action will be a first-class member
> of the "List of possible actions". Or is the intent that the
> description be taken from the form representing an action (e.g. a defun,
> a lambda etc).
Using a docstring sounds like a good idea. But it is a bit early to
decide these details. I'd like to discuss the more general design first.
--
Ihor Radchenko // yantar92,
Org mode maintainer,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark?
2024-12-14 9:48 ` Ihor Radchenko
@ 2024-12-14 10:12 ` Philip Kaludercic
0 siblings, 0 replies; 10+ messages in thread
From: Philip Kaludercic @ 2024-12-14 10:12 UTC (permalink / raw)
To: Ihor Radchenko
Cc: Psionic K, charles.choi, Emacs developers, emacs-orgmode,
emacs.transient, juri, justin, karthikchikmagalur, omar,
tclaesson, visuweshm
Can I please be removed from the CCs in this thread?
Ihor Radchenko <yantar92@posteo.net> writes:
> Psionic K <psionik@positron.solutions> writes:
>
>>> intercepts the main loop
>
>> This is optional, per transient menu (prefix) and the commands within it.
>> A common technique, used by magit and others, is to have entry point
>> commands in the regular keymap so that many commands can be started without
>> traversing several menus. If you want normal un-shadowed bindings active
>> at the same time, the prefix has a slot called `transient-non-suffix' that
>> is similar to the `:suppress' option in keymaps or setting a `t'
>> `undefined' binding in a keymap. However the results of mixing self-insert
>> and modal or modal and another modal are generally bad.
>
> Thanks for the info!
> So, we can have something like
>
> :transient-non-suffix 'leave
>
> and then pressing something that is not bound to a suffix or infix will
> run the parent keymap command, automatically leaving transient state.
>
>> - Normalizing how to obtain arguments when being called independently as an
>> interactive command versus being called as a Transient suffix
>
> I think it is addressed in the example patch I shared. There, we pass
> around the original function arguments via macro expansion (!arg-name)
>
> ["Open" ("b" "bibliography entry" (org-cite-basic-goto !citation !prefix))]
>
>> In the short term, to punch the first two problems in the face, override
>> the `:setup-children' method. If you know what keymap you are borrowing
>> bindings from, you can synchronize it at display time.
>
> This is also partially solved. We do use :setup-children, although the
> initial implementation simply reads user customization into menu layout.
>
> I believe that we can read a keymap in similar way and generate
> transient layout automatically.
>
>> What I fear is a system like org-speed-keys which relies on an override of
>> `org-self-insert' and is yet another orthogonal system. I much prefer the
>> Lispy style of integration, which uses a keymap. Using keymaps, even if
>> they are not active, to generate transient key bindings via :setup-children
>> is the best way to have certain integration with other Emacs tools.
>
> May you please elaborate?
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark?
2024-12-13 18:41 ` [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? (was: Fwd: Org-cite: Replace basic follow-processor with transient menu?) Ihor Radchenko
2024-12-13 22:09 ` [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? Gabriel Santos
2024-12-13 22:57 ` Suhail Singh
@ 2024-12-14 10:50 ` indieterminacy
2 siblings, 0 replies; 10+ messages in thread
From: indieterminacy @ 2024-12-14 10:50 UTC (permalink / raw)
To: Ihor Radchenko
Cc: Tor-björn Claesson, emacs-devel, emacs-orgmode,
Omar Antolín Camarena, Jonas Bernoulli, Juri Linkov,
karthikchikmagalur, Visuwesh, charles.choi, Justin Burkett,
rswgnu
Hello Ihor,
On 2024-12-13 19:41, Ihor Radchenko wrote:
> TL;DR: We are in the process of designing a more unified selection
> interface for Org mode and want to see if there is some way to unify
> context-menu-mode, transient, which-key and embark together. The idea
> is
> to (1) avoid too many customizations; (2) allow users to decide how to
> choose between multiple options - by mouse, keyboard, and using
> customizable UIs.
> ...
I would consider an `actions -> menu` functionality to be something
which should be a distinct tool,
albeit heavily configured to suit Orgmode functionality.
I think its great how Transient was able to emerge from Magit's
activities and its clearly providing opportunities for scaling the
utility.
If I may widen the topic a little, your RFC could be an opportunity to
examine the overlaps between Orgmode and Hyperbole.
For instance, the use of implicit buttons could be examined:
https://www.gnu.org/software/hyperbole/man/hyperbole.html#Implicit-Buttons
I reckon what you are proposing (greater fluency and flow for menus
dependent on context) could benefit Hyperbole's functionality too (the
action utility for that environment seems more focused on one action
rather than prompting a selection of actions).
Ive CC'd Robert Weiner (who leads Hyperbole), incase that is of use.
Kind regards,
Jonathan McHugh
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark?
2024-12-14 9:57 ` Ihor Radchenko
@ 2024-12-14 10:59 ` Gabriel Santos
2024-12-14 13:10 ` Ihor Radchenko
0 siblings, 1 reply; 10+ messages in thread
From: Gabriel Santos @ 2024-12-14 10:59 UTC (permalink / raw)
To: Ihor Radchenko; +Cc: emacs-devel, emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1658 bytes --]
>> The consideration for context-menu for me is particularly intriguing, as there's
>> a lot of functionality already included in Org's context menu.
>
> This is not right. I think you are confusing ordinary menu bar and
> context menu. Context menu is "right click" menu that will display
> different items depending on where you click. Org mode currently does
> not have context-menu-mode integration (we should fix this deficiency)
Maybe it's some third-party package I'm using, but right-cliking on an Org
buffer gives me a lot of options:
<https://0x0.st/XF1y.png>
>> I don't often use org-ctrl-c-ctrl-c, but now that I've seen the interaction
>> menu for properties as an example, I'd say the best option for it would be
>> which-key, as it's a simpler menu.
>
> My conclusion so far is that there is no "best" for every user. We
> should ideally support user-customized menu UI. The main question is how
> to do it.
I also agree with this conclusion. Hope others can contribute with
suggestions of how to go about it.
>>> This UI flow can be implemented using context menus, which-key popups,
>>> transient menus, and also using embark (where the way menu is displayed
>>> can be customized).
>>>
>>> All the 4 approaches represent different UI models with various
>>> strengths and weaknesses:
>> ...
>> It has options for setting the pop-up type and position. Could this help with
>> flexibility?
>
> May you elaborate what "it" refers to?
Sorry, seems I forgot to clarify. "It" in this context was referring to which-key.
It has the following variables for altering (window) display:
- which-key-popup-type
- which-key-side-window-location
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark?
2024-12-14 10:59 ` Gabriel Santos
@ 2024-12-14 13:10 ` Ihor Radchenko
0 siblings, 0 replies; 10+ messages in thread
From: Ihor Radchenko @ 2024-12-14 13:10 UTC (permalink / raw)
To: Gabriel Santos; +Cc: emacs-devel, emacs-orgmode
Gabriel Santos <gabrielsantosdesouza@disroot.org> writes:
> Maybe it's some third-party package I'm using, but right-cliking on an Org
> buffer gives me a lot of options:
>
> <https://0x0.st/XF1y.png>
This is simply a copy of the top-level menu. You would see the same if
you enable the menu bar. No "context" is considered in this case.
--
Ihor Radchenko // yantar92,
Org mode maintainer,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-12-14 13:10 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-14 0:37 [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? (was: Fwd: Org-cite: Replace basic follow-processor with transient menu?) Psionic K
2024-12-14 9:48 ` Ihor Radchenko
2024-12-14 10:12 ` [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? Philip Kaludercic
-- strict thread matches above, loose matches on Subject: below --
2024-09-14 12:36 Org-cite: Replace basic follow-processor with transient menu? Tor-björn Claesson
2024-11-02 19:04 ` Tor-björn Claesson
2024-11-02 19:21 ` Ihor Radchenko
2024-11-02 21:37 ` Tor-björn Claesson
2024-11-03 7:40 ` Ihor Radchenko
2024-11-05 10:07 ` Tor-björn Claesson
2024-11-09 14:08 ` Ihor Radchenko
2024-11-10 16:33 ` Tor-björn Claesson
2024-11-10 16:41 ` Ihor Radchenko
2024-11-11 10:03 ` Tor-björn Claesson
2024-11-11 15:52 ` Ihor Radchenko
2024-11-12 9:26 ` Tor-björn Claesson
2024-11-12 18:03 ` Ihor Radchenko
[not found] ` <CAO0k703a5SCv4Eaogjs-14zgmTi-pK5qqG=8VzB8+7h-kcC8yg@mail.gmail.com>
[not found] ` <87wmh8s358.fsf@localhost>
[not found] ` <87y11nwp9z.fsf@gmail.com>
2024-11-17 9:30 ` Fwd: " Tor-björn Claesson
2024-11-23 16:41 ` Ihor Radchenko
2024-11-25 17:49 ` Tor-björn Claesson
2024-12-10 19:11 ` Ihor Radchenko
2024-12-11 10:05 ` Tor-björn Claesson
2024-12-13 18:41 ` [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? (was: Fwd: Org-cite: Replace basic follow-processor with transient menu?) Ihor Radchenko
2024-12-13 22:09 ` [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? Gabriel Santos
2024-12-14 9:57 ` Ihor Radchenko
2024-12-14 10:59 ` Gabriel Santos
2024-12-14 13:10 ` Ihor Radchenko
2024-12-13 22:57 ` Suhail Singh
2024-12-14 9:59 ` Ihor Radchenko
2024-12-14 10:50 ` indieterminacy
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).