Si alguna vez cierro el *scratch*
búfer, siempre es un accidente.
Tengo, persistent-scratch
así que es tan fácil como un persistent-scratch-reload
pero sería bueno si no se pudiera matar el rasguño. ¿Cómo puedo hacer eso?
fuente
Si alguna vez cierro el *scratch*
búfer, siempre es un accidente.
Tengo, persistent-scratch
así que es tan fácil como un persistent-scratch-reload
pero sería bueno si no se pudiera matar el rasguño. ¿Cómo puedo hacer eso?
Puede (ab-) usar kill-buffer-query-functions
para este propósito:
(add-hook 'kill-buffer-query-functions #'my/dont-kill-scratch)
(defun my/dont-kill-scratch ()
(if (not (equal (buffer-name) "*scratch*"))
t
(message "Not allowed to kill %s, burying instead" (buffer-name))
(bury-buffer)
nil))
En mi antigua configuración de Emacs, usé esto para proteger un montón de búferes importantes como *Messages*
.
Tenga en cuenta que mi función se utiliza bury-buffer
para lograr el efecto de matar un búfer (eliminar el búfer) sin realmente matar el búfer. Emacs cambiará a un búfer diferente, como si hubiera eliminado scratch, pero manténgalo vivo y colóquelo al final de la lista de búfer.
O simplemente
(add-hook 'kill-buffer-query-functions
(lambda() (not (equal (buffer-name) "*scratch*"))))
#
? Ya no creo que sea necesario
Se ha introducido una nueva característica para scratch persistente llamada "recordar"
De https://www.masteringemacs.org/article/whats-new-in-emacs-24-4
The new command ``remember-notes`` creates a buffer which is saved
on ``kill-emacs``.
You may think of it as a \*scratch\* buffer whose content is preserved.
In fact, it was designed as a replacement for \*scratch\* buffer and can
be used that way by setting ``initial-buffer-choice`` to
``remember-notes`` and ``remember-notes-buffer-name`` to “\*scratch\*”.
Without the second change, \*scratch\* buffer will still be there for
notes that do not need to be preserved.
remember-notes-bury-on-kill
(que es t
por defecto). Hace lo que el nombre sugiere, lo que parece bastante relevante para la pregunta original.
notes
(que se abre al inicio) y no se secuestra *scratch*
(lo intenté con y sin escapes al asterisco)
ok, toda esta discusión me ha llevado a volver a un enfoque que he intentado configurar pero @Drew ha reavivado el interés.
Crea un archivo como este en ~/.emacs.d/scratch.el
;;; scratch.el --- Emacs Lisp Scratch -*- lexical-binding: t -*-
;; Local Variables:
;; flycheck-disabled-checkers: (emacs-lisp-checkdoc)
;; byte-compile-warnings: (not free-vars unresolved)
;; End:
;;; scratch.el ends here
gracias a https://emacs.stackexchange.com/a/19507/5142 por el Local Variables
.
Y luego agregue lo siguiente a ~/.emacs.d/init.el
la respuesta de @ lunaryorn:
;; *scratch* is immortal
(add-hook 'kill-buffer-query-functions
(lambda () (not (member (buffer-name) '("*scratch*" "scratch.el")))))
(find-file (expand-file-name "scratch.el" user-emacs-directory))
*scratch*
? Si no, si lo usa esencialmente para el código Emacs-Lisp y podría usar el modo Emacs-Lisp con la misma facilidad, considere no usarlo*scratch*
para su violín Lisp. Simplemente utilíceloC-x f
con un búfer de archivos que puede guardar o tirar a voluntad.*scratch*
Emacs lo creará si no existe" e ingresando al modo de interacción Lisp.~/.emacs.d/scratch.el
. Pero simplemente no se siente bien, no sé por qué.tossa.el
,tossb
..., en cualquier lugar. Es trivial hacer%m ^toss
marcar todos esos archivos en un búfer Dired, luegoD
eliminarlos a todos.scratch.el
otra oportunidad al enfoque. Tal vez si puedo limpiar flycheck sería bueno emacs.stackexchange.com/questions/19506