org-manual: Use `kbd' macro for keybindings
* doc/org-manual.org (Handling Links): Use `kbd' macro for keybindings.
This commit is contained in:
parent
b78583a1c1
commit
e81cd90bb0
|
@ -3468,8 +3468,8 @@ generally, act on links.
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(with-eval-after-load 'org
|
(with-eval-after-load 'org
|
||||||
(define-key org-mode-map "\M-n" 'org-next-link)
|
(define-key org-mode-map (kbd "M-n") 'org-next-link)
|
||||||
(define-key org-mode-map "\M-p" 'org-previous-link))
|
(define-key org-mode-map (kbd "M-p") 'org-previous-link))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** Using Links Outside Org
|
** Using Links Outside Org
|
||||||
|
|
Loading…
Reference in New Issue