diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-16 01:28:01 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-16 01:28:01 +0200 |
commit | 47b84e6ecfc55273464855589a8c9ff50568501c (patch) | |
tree | 43dda67f52d8fc9d23c5bf7f0d2dc90a7b893568 /.config | |
parent | 45f1661cc4b0a4de3fdba06b0fb5187a55215dbb (diff) |
emacs: Document ‘mango-beframe-kill-frame’
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/config.org | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index 8110172..f2bb1f6 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -972,6 +972,8 @@ kill all buffers you were using in a frame before closing it. (beframe-mode)) (defun mango-beframe-kill-frame () + "Kill all the buffers within the current beframe buffer list and then destroy + the frame." (interactive) (mapc #'kill-buffer (beframe-buffer-list)) (save-buffers-kill-terminal)) |