10
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Emacs 25 で saveplace を使う

Posted at

saveplace は、以前開いたファイルを再度開いたときに元のカーソル位置を復元してくれるライブラリです。

Emacs 24.5 までは

(require 'saveplace)
(setq-default save-place t)

で使うことができるが、Emacs 25 で変更があったらしく

(require 'saveplace)
(save-place-mode 1) ;; Changed for Emacs 25

としないと動かなかった。

10
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?