]> git.eshelyaron.com Git - emacs.git/commitdiff
Support ido-vertical-mode better
authorDmitry Gutov <dgutov@yandex.ru>
Tue, 4 Feb 2020 23:50:12 +0000 (02:50 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Tue, 4 Feb 2020 23:50:26 +0000 (02:50 +0300)
* lisp/ido.el (ido-exhibit):
Prepend a space to INF if it starts with a newline (bug#39379).

lisp/ido.el

index 355be5eaa6663ccbb0469695a3ffe6cdb8a2e5e1..6707d814077517e7f1110b6c3f57369dc7d4f376 100644 (file)
@@ -4732,6 +4732,9 @@ For details of keybindings, see `ido-find-file'."
             (delete-overlay ido--overlay))
           (let ((o (make-overlay (point-max) (point-max) nil t t)))
             (when (> (length inf) 0)
+              ;; For hacks that redefine ido-completions function (bug#39379)
+              (when (eq (aref inf 0) ?\n)
+                (setq inf (concat " " inf)))
               (put-text-property 0 1 'cursor t inf))
             (overlay-put o 'after-string inf)
             (setq ido--overlay o)))