I would like to save the last position of point in the buffer I am visiting, so to have point still there when I go back to that file.
I understand I can use saveplace
for this, so I added this snippet in my configuration:
(use-package saveplace ; Save point position in files
:init (progn
(setq-default save-place t)
(toggle-save-place-globally)))
Yet I am not getting the desired behavior: point is still place at the beginning of the buffer.
I am using Emacs 25.0.50.1 (45c92dd
), but the same thing is happening with emacs -Q
.