diff options
author | Jimmy Aguilar Mena <spacibba@aol.com> | 2022-03-10 14:36:02 +0100 |
---|---|---|
committer | Jimmy Aguilar Mena <spacibba@aol.com> | 2022-03-10 14:37:40 +0100 |
commit | e683e60fad69914eb0c33c9ad83b819b160fd5a2 (patch) | |
tree | 6cd945510e65a81b18253610037f683758c84ff1 /lisp/minibuffer.el | |
parent | 09b548fd5e7860f363a3d5bf6f975f577b9cd43e (diff) | |
download | emacs-e683e60fad69914eb0c33c9ad83b819b160fd5a2.tar.gz emacs-e683e60fad69914eb0c33c9ad83b819b160fd5a2.tar.bz2 emacs-e683e60fad69914eb0c33c9ad83b819b160fd5a2.zip |
Add new mode completions-highlight-mode.
Diffstat (limited to 'lisp/minibuffer.el')
-rw-r--r-- | lisp/minibuffer.el | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index cd0c274765f..148ba7a8730 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -2138,6 +2138,52 @@ candidates." (run-hooks 'completion-setup-hook) nil) + +(defface completions-highlight + '((t :inherit highlight :extend t)) + "Default face for highlighting the current line in Hl-Line mode." + :version "29.1") + +(defvar completions--overlay nil + "Overlay to use when `completions-highlight-mode' is enabled.") + +(defun completions-highlight--delete () + "Highlight current candidate in *Completions* when ``completions-highlight''." + (when (overlayp completions--overlay) + (delete-overlay completions--overlay))) + +(defun completions-highlight--highlight () + "Highlight current candidate if point in a candidate." + (let* ((point (point)) + (hpoint (or (and (get-text-property point 'mouse-face) point) + (and (> point 1) (get-text-property (1- point) 'mouse-face) (1- point))))) + (when hpoint + (move-overlay completions--overlay + (previous-single-property-change (1+ hpoint) 'mouse-face nil (point-min)) + (next-single-property-change hpoint 'mouse-face nil (point-max)))))) + +(defun completions-highlight--setup-hook () + "Function to call when enabling the `completion-highlight-mode' mode. +It is called when showing the *Completions* buffer." + (with-current-buffer "*Completions*" + (completions-highlight--highlight) + (add-hook 'pre-command-hook #'completions-highlight--delete nil t) + (add-hook 'post-command-hook #'completions-highlight--highlight nil t))) + +;;;###autoload +(define-minor-mode completions-highlight-mode + "Completion highlight mode to enable candidates highlight in the minibuffer." + :global t + :group 'minibuffer + (cond + (completions-highlight-mode + (setq completions--overlay (make-overlay 0 0)) + (overlay-put completions--overlay 'face 'completions-highlight) + (add-hook 'completion-setup-hook #'completions-highlight--setup-hook t)) + (t + (remove-hook 'completion-setup-hook #'completions-highlight--setup-hook))) + (completions-highlight--delete)) + (defvar completion-extra-properties nil "Property list of extra properties of the current completion job. These include: |