* Deleting Completion Buffer @ 2003-05-14 16:26 Jeba Bhaskaran 0 siblings, 0 replies; 3+ messages in thread From: Jeba Bhaskaran @ 2003-05-14 16:26 UTC (permalink / raw) Is there a way to automatically delete the completion buffer after a selection has been made? __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <mailman.6195.1052929965.21513.help-gnu-emacs@gnu.org>]
* Re: Deleting Completion Buffer [not found] <mailman.6195.1052929965.21513.help-gnu-emacs@gnu.org> @ 2003-05-15 15:01 ` Kevin Rodgers 2003-05-16 0:03 ` Johan Bockgård 0 siblings, 1 reply; 3+ messages in thread From: Kevin Rodgers @ 2003-05-15 15:01 UTC (permalink / raw) Jeba Bhaskaran wrote: > Is there a way to automatically delete the completion > buffer after a selection has been made? Untested: (defadvice exit-minibuffer (after kill-completion-buffer activate) "Kill the *Completions* buffer." (let ((completions-buffer (get-buffer "*Completions*"))) (if completions-buffer (kill-buffer completions-buffer)))) -- <a href="mailto:<kevin.rodgers@ihs.com>">Kevin Rodgers</a> ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Deleting Completion Buffer 2003-05-15 15:01 ` Kevin Rodgers @ 2003-05-16 0:03 ` Johan Bockgård 0 siblings, 0 replies; 3+ messages in thread From: Johan Bockgård @ 2003-05-16 0:03 UTC (permalink / raw) Kevin Rodgers <ihs_4664@yahoo.com> writes: > (defadvice exit-minibuffer (after kill-completion-buffer activate) There is a minibuffer-exit-hook. -- The day Microsoft makes something that doesn't suck is probably the day they start making vacuum cleaners. -- Ernst Jan Plugge ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2003-05-16 0:03 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2003-05-14 16:26 Deleting Completion Buffer Jeba Bhaskaran [not found] <mailman.6195.1052929965.21513.help-gnu-emacs@gnu.org> 2003-05-15 15:01 ` Kevin Rodgers 2003-05-16 0:03 ` Johan Bockgård
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/emacs.git https://git.savannah.gnu.org/cgit/emacs/org-mode.git This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.