Hi everybody, I'm facing a strange behaviour. With the following receipe I'm unable to go to to the end of buffer with C-End (nor with M-x end-of-buffer). First You should have modus installed from elpa somewhere. I've mine in ~/.emacs.d/elpa-27/ Then evalutate the code below : #+begin_src elisp (let ((modus-theme-install-path (expand-file-name "~/.emacs.d/elpa-27/modus-themes-20220323.801/"))) (setq display-fill-column-indicator-character 9474) (add-to-list 'load-path modus-theme-install-path) (load (expand-file-name "modus-themes-autoloads.el" modus-theme-install-path)) (modus-themes-load-vivendi) (find-file (expand-file-name "modus-themes.el" modus-theme-install-path)) (display-fill-column-indicator-mode) (hs-minor-mode) (hs-hide-all)) #+end_src Then try to jump at the end of buffer with C-end or M-x end-of-buffer. The point isn't at end of buffer. See the snapshot.1.png attached.