Kill garbage buffers automatically
 
Go to file
Akib Azmain Turja ce2ea016a6
Bump version to 1.0
2022-11-28 11:09:35 +06:00
.dir-locals.el Add .dir-locals.el 2022-11-26 21:46:32 +06:00
COPYING Add COPYING 2022-05-28 16:00:04 +06:00
README.org Fix grammatical error 2022-07-16 17:58:07 +06:00
gc-buffers.el Bump version to 1.0 2022-11-28 11:09:35 +06:00

README.org

GC Buffers - Kill garbage buffer

There are many packages that create temporary buffers but don't kill those buffers, either because they don't do that or any unhandled error prevents it from doing that. Over time, these "garbage" buffer can pile up and eat up your memory. For example, there were 1359 garbage buffers created by Flymake Emacs Lisp byte compiler backend over 5 days.

This package's purpose is to clear them automatically, so you can use your memory to edit more files, run more commands and to use other programs.

Installation

gc-buffers isn't available on any ELPA right now. So, you must follow one of the following methods:

Quelpa

(quelpa '(gc-buffers
          :fetcher git
          :url "https://codeberg.org/akib/emacs-gc-buffers.git"))

Straight.el

(straight-use-package
 '(gc-buffers :type git
              :repo "https://codeberg.org/akib/emacs-gc-buffers.git"))

Manual

Download the gc-buffers.el file and put it in your load-path.

Usage

Clean garbage buffers with M-x gc-buffers. To enable automatically doing this, do M-x gc-buffers-mode.

Don't let buggy packages make Emacs "Emacs Makes A Computer Slow"!