ソースを参照

Add my-force-query-kill-current-buffer

master
10sr 5年前
コミット
8ce816fbb1
署名者: 10sr GPGキーID: 7BEC428194130EB2
1個のファイルの変更7行の追加0行の削除
  1. +7
    -0
      emacs.el

+ 7
- 0
emacs.el ファイルの表示

@@ -1810,6 +1810,13 @@ found, otherwise returns nil."
(interactive)
(if (y-or-n-p (concat "kill current buffer? :"))
(kill-buffer (current-buffer))))
(defun my-force-query-kill-current-buffer ()
"Interactively kill current buffer."
(interactive)
(when (y-or-n-p (concat "kill current buffer? :"))
(let ((kill-buffer-hook nil)
(kill-buffer-query-functions nil))
(kill-buffer (current-buffer)))))
;;(global-set-key "\C-xk" 'my-query-kill-current-buffer)
(substitute-key-definition 'kill-buffer
'my-query-kill-current-buffer


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