summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Neidhardt <mail@ambrevar.xyz>2020-09-01 08:54:24 +0200
committerPierre Neidhardt <mail@ambrevar.xyz>2020-09-01 08:54:24 +0200
commitd25e399449859e9a559c5cf9538ac31b0af1f6d4 (patch)
tree060e4600100a3880020d905f0cd54ec193302b2b
parent14ad9eb1d835950257d031e78126625546ebe996 (diff)
manual: Fix history-forwards and history-backwards bindings.2-pre-release-1
-rw-r--r--source/manual.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/manual.lisp b/source/manual.lisp
index 072d70565..29c248227 100644
--- a/source/manual.lisp
+++ b/source/manual.lisp
@@ -59,8 +59,8 @@ have priorities over the other modes key bindings.")
(:pre (:code "
\(defvar *my-keymap* (make-keymap \"my-map\"))
\(define-key *my-keymap*
- \"C-f\" 'history-forwards
- \"C-b\" 'history-backwards)
+ \"C-f\" 'nyxt/web-mode:history-forwards
+ \"C-b\" 'nyxt/web-mode:history-backwards)
\(define-mode my-mode ()
\"Dummy mode for the custom key bindings in `*my-keymap*'.\"