diff options
| author | Blake Romero <blake@developercraft.com> | 2025-10-18 21:50:45 +0100 |
|---|---|---|
| committer | Blake Romero <blake@developercraft.com> | 2025-10-18 21:50:45 +0100 |
| commit | b06d9d3e5f06d40975393abe0232d15df643248b (patch) | |
| tree | f7340cff5c2389aa51f96b489d6f2dde1d6aeaaa | |
| parent | cf56a955b622a710a60cd05ed971256b2847155e (diff) | |
Add scroll line & move by paragraph keybindings
| -rw-r--r-- | emacs-config.org | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org index c92250f..af8f7c1 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -1792,6 +1792,15 @@ Improve region text manipulation. (keymap-set +global-keys-map "M-U" #'upcase-char) #+end_src +Movement. +#+begin_src elisp + (keymap-global-set "M-N" #'scroll-up-line) + (keymap-global-set "M-P" #'scroll-down-line) + + (keymap-global-set "M-n" #'forward-paragraph) + (keymap-global-set "M-p" #'backward-paragraph) +#+end_src + Help actions. #+begin_src elisp (keymap-set +global-keys-map "C-h M" #'describe-keymap) |
