Selaa lähdekoodia

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

master
10sr 4 vuotta sitten
vanhempi
commit
8ce816fbb1
Allekirjoittanut: 10sr GPG Key ID: 7BEC428194130EB2
1 muutettua tiedostoa jossa 7 lisäystä ja 0 poistoa
  1. +7
    -0
      emacs.el

+ 7
- 0
emacs.el Näytä tiedosto

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


Ladataan…
Peruuta
Tallenna