fix kab, upd magit config

This commit is contained in:
2026-08-17 11:24:05 +02:00
parent f94826d8cc
commit f246281bc4
4 changed files with 30 additions and 6 deletions

View File

@@ -348,7 +348,7 @@ Version 2015-04-09"
(global-set-key (kbd "C-c C-p") 'copy-buffer-read-only) ; make read-only buffer copy
;; --------------------------------------------------------------------------------
;; ** Cleanup, close all windows and kill all buffers
;; ** Cleanup, close all windows and kill all buffers and processes
;; From time to time I get annoyed by the many dozen buffers
;; opened. In such cases I like to close them all at once.
@@ -364,6 +364,8 @@ Version 2015-04-09"
(clean-buffer-list)
(dolist (buffer (buffer-list))
(kill-buffer buffer))
(dolist (process (list-processes))
(kill-process process))
(delete-minibuffer-contents)
(if (fboundp 'tramp-cleanup-all-connections)
(tramp-cleanup-all-connections))