Ver a proveniência

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

master
10sr há 5 anos
ascendente
cometimento
8ce816fbb1
Assinados por: 10sr ID da chave GPG: 7BEC428194130EB2
1 ficheiros alterados com 7 adições e 0 eliminações
  1. +7
    -0
      emacs.el

+ 7
- 0
emacs.el Ver ficheiro

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


Carregando…
Cancelar
Guardar