Leo <[email protected]> writes: > On 2010-06-13 14:32 +0100, Rémi Vanicat wrote: >> Which 5? I have *magit-tmp* that should be renamed " *magit-tmp*", and >> *magit-process*, but I see no other. > > *magit-log* *magit-reflog*, log edit, wuzzup etc etc. I am thinking > maybe 'q' in some of these buffers should just delete the buffer.
Those are not temporary buffers. They display the information requested by the user. > Locally I have the following two patches that delete the temp-buffers > and log-edit buffers after use. There seems to be no reason keeping them > around. I switch back to the *magit-log* buffer quite often after creating it. If all those buffers are really annoying to you, instead of changing the default behavior just create a function `magit-bury-buffer' and a variable that dictates what the function does: 'bury-buffer (the default) or 'kill-buffer. Then replace the appropriate occurrences of `bury-buffer' with `magit-bury-buffer'. [snip]
