Re: BBDB frame
Thomas Narten <[email protected]>
| Newsgroups | gmane.mail.wanderlust.general |
|---|---|
| Message-ID | <m3zinka5xn.wl-narten__13108.9786104441$1473209546$gmane$org@us.ibm.com> |
I had a similar problem where frames get created in an annoying way,
with the cursor moved to the new frame. While I often liked the frame
(e.g., for file name completion), I didn't like having the cursor go
there. My fix was to make it easy to delete the frame when I was done
looking at it. Typically, the cursor goes back to the window you were
in before the new frame popped up.
(global-set-key "\C-z" 'narten-delete-frame); if running X
(defun narten-delete-frame ()
(interactive)
(if (>= (length (frame-list)) 2)
(delete-frame)
(message "Can't delete last frame - exit emacs instead.")
)
)
>
> bbdbv3
>
> when i do a bbdb-complete-mail, bbdb opens a frame with a history of
> recent bbdb completiond, and it stays there. how can i stop that?
>
> randy
>