diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2023-11-21 12:54:16 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2023-11-21 12:54:16 +0100 |
| commit | 923246d17403cf02431ea78c60644de77d7251d8 (patch) | |
| tree | 944ad9303dbc231a0a1e7df97cfbc2f497186b03 | |
| parent | 45fd93d972992c0489a9e8de4170045d4c71d5a1 (diff) | |
Move definition of transient-popup-navigation-help
| -rw-r--r-- | lisp/transient.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/transient.el b/lisp/transient.el index e01fe23..c5fc788 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -2686,6 +2686,12 @@ prefix argument and pivot to `transient-update'." This should never happen. Please open an issue and post the shown command log." :error))) +(defun transient-popup-navigation-help () + "Inform the user how to enable popup navigation commands." + (interactive) + (message "This command is only available if `%s' is non-nil" + 'transient-enable-popup-navigation)) + (defun transient-toggle-common () "Toggle whether common commands are permanently shown." (interactive) @@ -4047,12 +4053,6 @@ resumes the suspended transient." ;;; Popup Navigation -(defun transient-popup-navigation-help () - "Inform the user how to enable popup navigation commands." - (interactive) - (message "This command is only available if `%s' is non-nil" - 'transient-enable-popup-navigation)) - (defun transient-scroll-up (&optional arg) "Scroll text of transient popup window upward ARG lines. If ARG is nil scroll near full screen. This is a wrapper |
