]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix initial comment in completions-highlight file.
authorJimmy Aguilar Mena <spacibba@aol.com>
Wed, 26 Aug 2020 20:20:52 +0000 (22:20 +0200)
committerJimmy Aguilar Mena <spacibba@aol.com>
Fri, 20 Nov 2020 18:03:23 +0000 (19:03 +0100)
* lisp/completions-highlight.el : Remove and fix some comments.

lisp/completions-highlight.el

index d601f17703ed7ea45ce826590062aa9c50d568e5..d6c7d5ab0e9f6e44ca26d30be1bc63fe6e9d788e 100644 (file)
@@ -1,4 +1,4 @@
-;;; icomplete.el --- minibuffer completion incremental feedback -*- lexical-binding: t -*-
+;;; completions-highlight.el --- highlight and natural move throw *Completions* buffer -*- lexical-binding: t -*-
 
 ;; Copyright (C) 2020 Free Software Foundation, Inc.
 
 ;; interacting with Zle from zsh shell.
 
 ;; The package intents to implement such functionalities without using
-;; hacks or complex functions.  And using the default Emacs Completion
+;; hacks or complex functions.  And using the default Emacs *Completions*
 ;; infrastructure.
 
 
 ;;; Code:
 
-;; minibuffer part
-
-;; (defcustom minibuffer-tab-go-completion t
-;;   "If a second `TAB' jump to completion buffer."
-;;   :type 'boolean
-;;   :version "28.1"
-;;   :group 'completion)
-
 (require 'simple)
 (require 'minibuffer)
 
@@ -51,6 +43,8 @@
 (defvar minibuffer-tab-through-completions-function-save nil
   "Saves the the original value of completion-in-minibuffer-scroll-window.")
 
+;; *Completions* side commands
+
 (defun completions-highlight-this-completion (&optional n)
   "Highlight the completion under point or near.
 N is set to 1 if not specified."
@@ -59,8 +53,6 @@ N is set to 1 if not specified."
   (next-completion n)
   (completions-highlight-next-completion (* -1 n)))
 
-;; *Completions* side commands
-
 (defun completions-highlight-next-completion (n)
   "Move to and highlight the next item in the completion list.
 With prefix argument N, move N items (negative N means move backward).