From dbde4c1ee35e6679c54bc5346c610e07b1b0d3a4 Mon Sep 17 00:00:00 2001 From: Milan Zamazal Date: Wed, 15 Jun 2022 19:43:30 +0200 Subject: [PATCH] Disable minibuffer in the PIP frame by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It looks nicer and it’s likely better to use a larger minibuffer in another frame if needed. --- pip-frame.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pip-frame.el b/pip-frame.el index 5b231d9..4242e4c 100644 --- a/pip-frame.el +++ b/pip-frame.el @@ -49,7 +49,8 @@ Usually, the value should be larger than 0 and much smaller than 1." (defcustom pip-frame-parameters '((left . 0.9) - (top . 0.9)) + (top . 0.9) + (minibuffer . nil)) "Alist of frame parameters to use for the PIP frame. The frame size is determined automatically using `pip-frame-scale' custom option but it can be overriden here."