emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/ivy-posframe 9dcdd80 121/195: add ivy--height advice


From: Feng Shu
Subject: [elpa] externals/ivy-posframe 9dcdd80 121/195: add ivy--height advice
Date: Sat, 3 Oct 2020 07:11:57 -0400 (EDT)

branch: externals/ivy-posframe
commit 9dcdd80093addf1a49eca920c73c3cc1fc745366
Author: conao3 <conao3@gmail.com>
Commit: conao3 <conao3@gmail.com>

    add ivy--height advice
---
 ivy-posframe.el | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/ivy-posframe.el b/ivy-posframe.el
index 954a2f1..fd9169b 100644
--- a/ivy-posframe.el
+++ b/ivy-posframe.el
@@ -192,6 +192,11 @@ When 0, no border is showed."
   :group 'ivy-posframe
   :type 'sexp)
 
+(defcustom ivy-posframe-height-alist nil
+  "The `ivy-height-alist' while working ivy-posframe."
+  :group 'ivy-posframe
+  :type 'sexp)
+
 (defcustom ivy-posframe-additional-display-functions nil
   "The additional display functions"
   :group 'ivy-posframe
@@ -461,6 +466,12 @@ selection, non-nil otherwise."
           (insert prompt "  \n")
           (add-text-properties point (1+ point) '(face 
ivy-posframe-cursor)))))))
 
+(defun ivy-posframe--height (fn &rest args)
+  "Around advide of FN with ARGS."
+  (let ((ivy-height-alist
+         (append ivy-posframe-height-alist ivy-height-alist)))
+    (apply fn args)))
+
 ;;; variables
 
 (defvar ivy-posframe-display-function-list
@@ -473,7 +484,8 @@ selection, non-nil otherwise."
 
 (defvar ivy-posframe-advice-alist
   '((ivy--minibuffer-setup . ivy-posframe--minibuffer-setup)
-    (ivy--queue-exhibit    . ivy-posframe--add-prompt)))
+    (ivy--queue-exhibit    . ivy-posframe--add-prompt)
+    (ivy--height           . ivy-posframe--height)))
 
 ;;;###autoload
 (define-minor-mode ivy-posframe-mode



reply via email to

[Prev in Thread] Current Thread [Next in Thread]