From a8da497261d3faeea780511bcd03ac8f586942ab Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 11 Dec 2019 21:39:09 +0100 Subject: [PATCH] org-manual: Suggest kbd macro for bindings * doc/org-manual.org (Capture templates): Suggest kbd macro for bindings. --- doc/org-manual.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/org-manual.org b/doc/org-manual.org index 13598c0fa..0776ad70d 100644 --- a/doc/org-manual.org +++ b/doc/org-manual.org @@ -7417,7 +7417,7 @@ going through the interactive template selection, you can create your key binding like this: #+begin_src emacs-lisp -(define-key global-map "\C-cx" +(define-key global-map (kbd "C-c x") (lambda () (interactive) (org-capture nil "x"))) #+end_src