I have a huge screen, looking down at the minibuffer and then back and forth between my code and the minibuffer (e.g. if I'm isearch
ing) is somewhat annoying. As such I'm wondering if there is a way to mirror minibuffer contents at point.
I realize this might be complicated since the minibuffer becomes the active buffer, and so point
becomes the point in the minibuffer.
One idea of path to solution: is there a way to detect when entering minibuffer? To then detect what buffer we come from?
minibuffer-setup-hook
: "run just after entry to minibuffer". See alsominibuffer-active-p
. See alsocompletion-reference-buffer
. You can also give the minibuffer its own frame, and (re)position that frame near point. – Drew Mar 08 '18 at 18:37