> 2020年9月18日 上午8:53,Ergus 写道: > > On Wed, Sep 16, 2020 at 11:22:19PM +0800, jixiuf wrote: >> >> >> >> >> With commit f80a97fedf81cb0af955a4f799d5ac3105570a25 >> >> ``` >> (setq icomplete-format 'vertical) >> (setq icomplete-hide-common-prefix nil) >> (setq icomplete-show-matches-on-no-input t) >> (icomplete-mode 1) >> >> ``` >> >> 1. I got this error when I press C-h f (describe-function) >> Error in post-command-hook (icomplete-post-command-hook): (error "Invalid format operation % >> “) >> >> >> 2. M-x:man >> got : >> >> Even with (setq icomplete-hide-common-prefix nil) , the prefix is still hidden. >> > Both are fixed now. Please try. Thanks, it is fixed . But the bug of "disappearing prompt and entered text problem" came back again, when I (setq max-mini-window-height 10) ``` (setq icomplete-show-matches-on-no-input t) (icomplete-mode 1) (setq icomplete-format 'vertical) (defface vmacs-minibuffer-font `((t :inherit default :height 1.3)) "The default font for minibuffer buffer. Monospaced font whihc is fixed idth and height is recommended." :group 'minibuffer) (defun vmacs-minibuffer-hook() (set (make-local-variable 'buffer-face-mode-face) 'vmacs-minibuffer-font) (buffer-face-mode t)) (add-hook 'minibuffer-setup-hook #'vmacs-minibuffer-hook) (setq max-mini-window-height 10) ;; add this line ```