aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Ángel Moreno <mail@migalmoreno.com>2023-07-01 11:44:50 +0200
committerMiguel Ángel Moreno <mail@migalmoreno.com>2023-07-01 11:44:50 +0200
commit6fbf6b3ce9400a6730b08b7d08997f858355ecc2 (patch)
tree32a8b468c6144f95dac1c43582bc6c46dcef924e
parent9c8c6c0bf80e3b0682fc023a027ca06566de66d3 (diff)
fix: Fix scrolling helpers for new API0.1.1
-rw-r--r--nyxt.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/nyxt.el b/nyxt.el
index df271ea..c85986d 100644
--- a/nyxt.el
+++ b/nyxt.el
@@ -254,14 +254,14 @@ Optionally test if the extension's SYMBOL is bound."
"Scroll the Nyxt window."
(interactive)
(nyxt-run
- '(nyxt/document-mode::scroll-down)))
+ '(nyxt/mode/document::scroll-down)))
;;;###autoload
(defun nyxt-scroll-other-window-down ()
"Scroll the Nyxt window upward."
(interactive)
(nyxt-run
- '(nyxt/document-mode::scroll-up)))
+ '(nyxt/mode/document::scroll-up)))
(define-prefix-command 'nyxt-map)
(let ((map nyxt-map))