[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
feature/completions-highlight-modifications f666d0a 4/6: Fix initial com
From: |
Jimmy Aguilar Mena |
Subject: |
feature/completions-highlight-modifications f666d0a 4/6: Fix initial comment in completions-highlight file. |
Date: |
Tue, 15 Sep 2020 05:37:24 -0400 (EDT) |
branch: feature/completions-highlight-modifications
commit f666d0af028bae147efeee58f3b9aba6f8cbba0b
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).
- branch feature/completions-highlight-modifications created (now 2f2deb6), Jimmy Aguilar Mena, 2020/09/15
- feature/completions-highlight-modifications 2f2deb6 6/6: Fix recursive set-keymap-parent in completions-highlight., Jimmy Aguilar Mena, 2020/09/15
- feature/completions-highlight-modifications ba55ff0 1/6: Insert some modifications to implement completions highlighting., Jimmy Aguilar Mena, 2020/09/15
- feature/completions-highlight-modifications f666d0a 4/6: Fix initial comment in completions-highlight file.,
Jimmy Aguilar Mena <=
- feature/completions-highlight-modifications ec6d3b0 3/6: Add completions-highlight-mode initial implementation., Jimmy Aguilar Mena, 2020/09/15
- feature/completions-highlight-modifications 1e4b869 2/6: Document the changes in the API for Completions., Jimmy Aguilar Mena, 2020/09/15
- feature/completions-highlight-modifications c69cec1 5/6: Improve keymap handling., Jimmy Aguilar Mena, 2020/09/15