bard / emacs-run-command

Efficient and ergonomic external command invocation for Emacs
https://bard.github.io/emacs-run-command
GNU General Public License v3.0
102 stars 8 forks source link

Feedback for “Quickstart” #26

Closed madorian closed 8 months ago

madorian commented 8 months ago

in the manual it says

To activate the recipe, execute M-x customize RET run-command-recipes RET and add run-command-recipe-example to the list.

What is the command to do this non-interactively?

bard commented 8 months ago

You could do this to set the whole list at once:

(setq run-command-recipes '(run-command-recipe-example))

Or this to add to the existing list:

(add-to-list run-command-recipes '(run-command-recipe-example))