org-menu icon indicating copy to clipboard operation
org-menu copied to clipboard

A discoverable menu for Emacs org-mode using transient

#+TITLE: Org-menu

#+STARTUP: indent

A menu for editing org-mode documents and exploring it's features in a discoverable way.

It is using =transient=, the package to create interactive menus =magit= uses.

Editing a headline [[file:org-menu-headline.png]]

Editing a table [[file:org-menu-table.png]]

  • How to use it

Add this to your Emacs init file:

#+begin_src emacs-lisp (with-eval-after-load 'org (require 'org-menu) (define-key org-mode-map (kbd "C-c m") 'org-menu)) #+end_src