2

I am reading through An Introduction to Programming in Emacs Lisp in an emacs buffer. I get to the file through C-h i and navigated to Emacs Lisp Intro. If I kill the buffer and return the same way, it takes me back to the table of contents. I have save-place enabled in my init file with the following code.

(setq-default save-place t)

How can I save my place in an info file?

Drew
  • 75,699
  • 9
  • 109
  • 225
lookyhooky
  • 949
  • 7
  • 18

1 Answers1

5

You can set a bookmark to where you are. Normally it is bound to C-x r m, and you can give it a name.

To see the list of bookmarks, C-x r l.

Juancho
  • 5,395
  • 15
  • 20