muffinmad/emacs-mini-frame

Is it possible to make `yes-or-no` pop up?

Closed this issue · 2 comments

abcdw commented

I figured it out how to make it work for eval-expression (by removing it from ignored commands), but not succeed with yes-or-no yet. Want it to be in a child frame too.

A really cool package, thank you very much for creating it)

Somehow mini-frame advice is not working when yes-or-no-p function is calling read-from-minibuffer. Adding yes-or-no-p function to the mini-frame-advice-functions list will help.

Take a look at use-short-answers variable. It allows to use y-or-n-p function instead of yes-or-no-p. And y-or-n-p is working with mini-frame OOTB :)

abcdw commented