emacs-devel
[Top][All Lists]
Advanced

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

Re: [PATCH] Support "\n" in icomplete-separator


From: Gregory Heytings
Subject: Re: [PATCH] Support "\n" in icomplete-separator
Date: Tue, 10 Nov 2020 19:17:30 +0000
User-agent: Alpine 2.22 (NEB 394 2020-01-19)


(defvar o (make-overlay 0 0 nil t t))
(minibuffer-with-setup-hook
    (lambda ()
      (set (make-local-variable 'face-remapping-alist)
           '((default :height 1.3)))
      (move-overlay o (point) (point) (current-buffer))
      (let ((text (mapconcat
                   #'identity
                   '("Some" "text" "that" "will" "not" "fit"
                     "the" "minibuffer" "window")
                   "\n")))
        (put-text-property 0 1 'cursor t text)
        (overlay-put o 'after-string text)))
  (read-string "Multiline\nprompt: "))

Is it possible to make the prompt visible?  Should I file bug report for this?

What is the bug here?


The "bug" is that the word "Multiline" is not visible, only the word "prompt:" is. This has been discussed again and again, I don't understand why it is not yet clear for you.



reply via email to

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