emacs-diffs
[Top][All Lists]
Advanced

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

feature/completions-highlight-modifications 558b585 04/14: Fix initial c


From: Jimmy Aguilar Mena
Subject: feature/completions-highlight-modifications 558b585 04/14: Fix initial comment in completions-highlight file.
Date: Sun, 15 Nov 2020 17:35:46 -0500 (EST)

branch: feature/completions-highlight-modifications
commit 558b585a18a642921a094b4066cf8217b721a19f
Author: Jimmy Aguilar Mena <spacibba@aol.com>
Commit: Jimmy Aguilar Mena <spacibba@aol.com>

    Fix initial comment in completions-highlight file.
    
    * lisp/completions-highlight.el : Remove and fix some comments.
---
 lisp/completions-highlight.el | 16 ++++------------
 1 file changed, 4 insertions(+), 12 deletions(-)

diff --git a/lisp/completions-highlight.el b/lisp/completions-highlight.el
index d601f17..d6c7d5a 100644
--- a/lisp/completions-highlight.el
+++ b/lisp/completions-highlight.el
@@ -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.
 
@@ -28,20 +28,12 @@
 ;; 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).



reply via email to

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