ソースを参照

revert buffer when keyboard-quit

pull/1/head
10sr 12年前
コミット
e13ac33370
1個のファイルの変更5行の追加1行の削除
  1. +5
    -1
      .emacs.el

+ 5
- 1
.emacs.el ファイルの表示

@@ -1673,9 +1673,13 @@ when SEC is nil, stop auto save if enabled."
""
(interactive)
(run-hooks 'before-keyboard-quit-hook)
(call-interactively 'keyboard-quit)
;; (redisplay t)
(redraw-display)
;; (run-hooks 'window-configuration-change-hook)
(my-revert-buffer-if-needed)
;; (revert-buffer t t)
(keyboard-quit)
(insert "insert me")
(run-hooks 'after-keyboard-quit-hook))
(substitute-key-definition 'keyboard-quit 'my-keyboard-quit global-map)
;; (global-set-key (kbd "C-g") 'my-keyboard-quit)


読み込み中…
キャンセル
保存