For example, when you open a file via C-x-C-f, you can TAB complete file names, and if there are more than one possible completions, it will pop open a completion buffer with a list of possible completions. The problem is, after you’ve opened the file, the window the buffer was in switches back to normal, but it doesn’t close. Is there any way I can make those buffers close automatically after the file has been opened?
Share
Although it does not directly solve your problem have you considered
ido-modeas a mechanism for opening files?ido-mode will bind
C-x C-ftoido-find-filethis allows you to interactively opening files (selecting between name collisions from within the minibufferC-sand various other nifty features) I find it a much easier method of finding files and it will get rid of the*Completions*buffer altogether.