[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/ivy-posframe b934152 125/195: move variables section ab
From: |
Feng Shu |
Subject: |
[elpa] externals/ivy-posframe b934152 125/195: move variables section above advice section |
Date: |
Sat, 3 Oct 2020 07:11:58 -0400 (EDT) |
branch: externals/ivy-posframe
commit b934152e288c4d41852e1a09bbf8596b0572a483
Author: conao3 <conao3@gmail.com>
Commit: conao3 <conao3@gmail.com>
move variables section above advice section
---
ivy-posframe.el | 34 +++++++++++++++++-----------------
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/ivy-posframe.el b/ivy-posframe.el
index 4a631cb..5bdc909 100644
--- a/ivy-posframe.el
+++ b/ivy-posframe.el
@@ -441,6 +441,23 @@ selection, non-nil otherwise."
(ivy-quit-and-run
(avy-action-goto (avy-candidate-beg candidate)))))))
+;;; Variables
+
+(defvar ivy-posframe-display-function-list
+ (append
+ ivy-posframe-additional-display-functions
+ (mapcar (lambda (elm) (intern (format "ivy-posframe-display-at-%s" (car
elm))))
+ ivy-posframe-display-function-alist)
+ '(ivy-posframe-display
+ ivy-posframe-display-at-frame-bottom-window-center)))
+
+(defvar ivy-posframe-advice-alist
+ '((ivy--minibuffer-setup . ivy-posframe--minibuffer-setup)
+ (ivy--queue-exhibit . ivy-posframe--add-prompt)
+ (ivy--display-function-prop . ivy-posframe--display-function-prop)
+ (ivy--height . ivy-posframe--height)
+ (ivy-read . ivy-posframe--read)))
+
;;; Advice
(defun ivy-posframe--minibuffer-setup (fn &rest args)
@@ -491,23 +508,6 @@ selection, non-nil otherwise."
(append ivy-posframe-display-functions-alist
ivy-display-functions-alist)))
(apply fn args)))
-;;; variables
-
-(defvar ivy-posframe-display-function-list
- (append
- ivy-posframe-additional-display-functions
- (mapcar (lambda (elm) (intern (format "ivy-posframe-display-at-%s" (car
elm))))
- ivy-posframe-display-function-alist)
- '(ivy-posframe-display
- ivy-posframe-display-at-frame-bottom-window-center)))
-
-(defvar ivy-posframe-advice-alist
- '((ivy--minibuffer-setup . ivy-posframe--minibuffer-setup)
- (ivy--queue-exhibit . ivy-posframe--add-prompt)
- (ivy--display-function-prop . ivy-posframe--display-function-prop)
- (ivy--height . ivy-posframe--height)
- (ivy-read . ivy-posframe--read)))
-
;;;###autoload
(define-minor-mode ivy-posframe-mode
"Display ivy via posframe."
- [elpa] externals/ivy-posframe 92e09f2 153/195: Merge pull request #44 from conao3/fix-minor-mode-option, (continued)
- [elpa] externals/ivy-posframe 92e09f2 153/195: Merge pull request #44 from conao3/fix-minor-mode-option, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe d57087e 116/195: add additional-display-functions custom variable, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 1a7f2f0 107/195: move ivy-posframe-display-functions to variables section, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 95c1028 177/195: ivy-display-function -> ivy--display-function, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe aae7322 119/195: use ivy-posframe-mode-map instead of define-key, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 35d47bd 117/195: refine document, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 7dc84ee 152/195: Fix2 First line disappears with the specific condition. #47, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe d35af4f 144/195: handle ivy-display-function again, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 8902638 100/195: define ivy-posframe-adbice-alist, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 212eaa1 138/195: indent ivy-posframe-mode, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe b934152 125/195: move variables section above advice section,
Feng Shu <=
- [elpa] externals/ivy-posframe 9e0c6da 118/195: generate readme, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 02a357d 104/195: define ivy-posframe-mode instead of ivy-posframe-enable, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe aea9074 122/195: add ivy-posframe--read advice, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 76350e7 146/195: Update README, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe c4091c3 120/195: remove unnesessary code, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe e76a15d 162/195: Merge pull request #53 from gagbo/patch-1, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 83657be 114/195: add display-functions-alist to restore ivy variable, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 27e3cec 176/195: Try to fix Minibuffer is hiding always #66, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe c43acf3 132/195: alias ivy-posframe-enable as ivy-posframe-mode, Feng Shu, 2020/10/03
- [elpa] externals/ivy-posframe 3c3740e 142/195: Add ivy-posframe-lighter, Feng Shu, 2020/10/03