Jeśli chcę usunąć wszystko w buforze z elisp, jak to zrobić?
20
Próbowałeś erase-buffer
?
erase-buffer is an interactive built-in function in `C source code'.
(erase-buffer)
Delete the entire contents of the current buffer.
Any narrowing restriction in effect (see `narrow-to-region') is removed,
so the buffer is truly empty after this.
Jak znaleźć taką funkcję? M-x apropos buffer erase
erase-buffer
wywołaniu.kill-buffer
jest twój przyjaciel.Możesz użyć
setf
magii.(setf (buffer-string) "")
źródło
Jest też ta odpowiedź :
C-x h + del
Klawisz usuwa buforUwaga: Wymaga
transient-mark-mode
to włączenia (domyślnie jest).źródło