Skip to content

Commit

Permalink
popper-echo: Fix customization types
Browse files Browse the repository at this point in the history
  • Loading branch information
karthink committed Sep 9, 2023
1 parent 51b536b commit 3804068
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions popper-echo.el
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,13 @@
This is called on buffer-names displayed by `popper-echo'.
This function should accept a
string (the buffer name) and return a transformed string."
:type 'function
This function should accept a string (the buffer name) and return
a transformed string."
:type '(choice (const :tag "Don't transform buffer-names" nil)
function)
:group 'popper)

(defcustom popper-echo-lines 2
(defcustom popper-echo-lines 2
"Number of minibuffer lines used to show popup buffer names by `popper-echo'.
This has no effect when popper-echo-mode is turned off."
Expand Down Expand Up @@ -102,9 +103,10 @@ Examples:
This variable has no effect when popper-echo-mode is turned
off."
:type '(group character string)
:type '(repeat (choice character string))
:group 'popper)


(defface popper-echo-area-buried
'((t :inherit shadow))
"Echo area face for buried popups."
Expand Down

0 comments on commit 3804068

Please sign in to comment.