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

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

[elpa] externals/corfu 9f735cf4e6: Introduce corfu-docframe face


From: ELPA Syncer
Subject: [elpa] externals/corfu 9f735cf4e6: Introduce corfu-docframe face
Date: Fri, 18 Nov 2022 04:57:26 -0500 (EST)

branch: externals/corfu
commit 9f735cf4e690a226ce043480eea4fac17cca5b30
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Introduce corfu-docframe face
---
 extensions/corfu-docframe.el | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/extensions/corfu-docframe.el b/extensions/corfu-docframe.el
index 224902d2e6..69614e8428 100644
--- a/extensions/corfu-docframe.el
+++ b/extensions/corfu-docframe.el
@@ -43,6 +43,11 @@
 (eval-when-compile
   (require 'subr-x))
 
+(defface corfu-docframe
+  '((t :inherit corfu-default :height 0.8))
+  "Face used for the doc frame."
+  :group 'corfu-faces)
+
 (defcustom corfu-docframe-auto t
   "Display documentation popup automatically."
   :group 'corfu
@@ -59,7 +64,7 @@
   :group 'corfu
   :type 'boolean)
 
-(defcustom corfu-docframe-max-width 80
+(defcustom corfu-docframe-max-width 50
   "The max width of the corfu doc popup in characters."
   :group 'corfu
   :type 'integer)
@@ -121,7 +126,7 @@ Returns nil if an error occurs or the documentation content 
is empty."
     (with-current-buffer (or (car-safe res) res)
       (setq res (replace-regexp-in-string
                  "[\\s-\n]*\\[back\\][\\s-\n]*" ""
-                 (buffer-string))
+                 (buffer-string)))
       (and (not (string-blank-p res)) res))))
 
 ;; TODO get rid of optional arguments?
@@ -269,14 +274,16 @@ the corfu popup, its value is 'bottom, 'top, 'right or 
'left."
       (when doc-changed
         (if-let (doc (corfu-docframe--get-doc candidate))
             (with-current-buffer (corfu--make-buffer " *corfu-docframe*" doc)
-              ;; TODO extract
+              ;; TODO extract settings
               (setq-local line-move-visual t
                           truncate-partial-width-windows nil
                           left-margin-width 1
                           right-margin-width 1
                           truncate-lines nil
                           word-wrap t
-                          fringe-indicator-alist '((continuation))))
+                          fringe-indicator-alist '((continuation))
+                          face-remapping-alist (copy-tree 
face-remapping-alist))
+              (setf (alist-get 'default face-remapping-alist) 'corfu-docframe))
           (corfu-docframe--hide)
           (setq doc-changed nil edges-changed nil)))
       (when (or doc-changed edges-changed)



reply via email to

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