diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/modules/mm-editing.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/emacs/modules/mm-editing.el b/.config/emacs/modules/mm-editing.el index 2f19335..d52eeca 100644 --- a/.config/emacs/modules/mm-editing.el +++ b/.config/emacs/modules/mm-editing.el @@ -28,6 +28,16 @@ (advice-add command :around #'mm-editing-force-space-indentation)) +;;; Recenter The Screen When Jumping + +(dolist (command #'(backward-page + backward-paragraph + forward-page + forward-paragraph + pop-global-mark)) + (advice-add command :around #'mm-do-and-center)) + + ;;; Indentation Settings (setq-default |