LoginSignup
7
6

More than 5 years have passed since last update.

redo+: undoしすぎたのを元に戻す

Posted at

undoしすぎたのを元に戻すようにredo+をいれます。

インストールはM-x packege-list-packagesの一覧からredo+を選択してインストールします。

設定ファイルに下記を追加します。

.emacs.d/init.el
;;; redo+
(require 'redo+)
(global-set-key (kbd "C-M-/") 'redo)
(setq undo-no-redo t) ; 過去のundoがredoされないようにする
(setq undo-limit 600000)
(setq undo-strong-limit 900000)

C-/でundoをして、undoしすぎた場合はC-M-/で元に戻します。

7
6
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
7
6