emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/vcomplete b14444ef8a 45/91: ; Edit docstrings to conform c


From: ELPA Syncer
Subject: [nongnu] elpa/vcomplete b14444ef8a 45/91: ; Edit docstrings to conform completely to 'checkdoc'
Date: Tue, 24 May 2022 15:59:08 -0400 (EDT)

branch: elpa/vcomplete
commit b14444ef8a1007a3a67f96c8999d363606e41dbc
Author: Daniel Semyonov <daniel@dsemy.com>
Commit: Daniel Semyonov <daniel@dsemy.com>

    ; Edit docstrings to conform completely to 'checkdoc'
---
 vcomplete.el | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/vcomplete.el b/vcomplete.el
index aa22422efc..3814812cd9 100644
--- a/vcomplete.el
+++ b/vcomplete.el
@@ -178,7 +178,7 @@ With prefix argument N, move N items (negative N means move 
forward)."
     (define-key map [?\C-p] #'vcomplete-prev-completion)
     (define-key map [?\C-\M-m] #'vcomplete-choose-completion)
     map)
-  "Key map for `vcomplete-mode' commands.")
+  "Key map for completion commands.")
 
 ;;;; Visual completion mode:
 
@@ -193,8 +193,7 @@ With prefix argument N, move N items (negative N means move 
forward)."
     (setq vcomplete--last-string (minibuffer-contents))))
 
 (defun vcomplete--string-in-region ()
-  "Return a substring according to the markers in
-`completion-in-region--data'."
+  "Return a substring according to the markers in 
`completion-in-region--data'."
   (when completion-in-region--data
     (buffer-substring (car completion-in-region--data)
                       (cadr completion-in-region--data))))
@@ -232,12 +231,12 @@ With prefix argument N, move N items (negative N means 
move forward)."
   (remove-hook 'post-command-hook #'vcomplete--update-in-minibuffer t))
 
 (defun vcomplete--setup-completions ()
-  "Setup `vcomplete-mode' for the `*Completions*' buffer."
+  "Setup visual completions for the `*Completions*' buffer."
   (add-hook 'post-command-hook
             #'vcomplete--highlight-completion-at-point nil t))
 
 (defun vcomplete--setup-minibuffer ()
-  "Setup `vcomplete-mode' for the minibuffer."
+  "Setup visual completions for the minibuffer."
   (when minibuffer-completion-table
     (setq vcomplete--last-completion-overlay nil)
     (when vcomplete-auto-update
@@ -249,7 +248,7 @@ With prefix argument N, move N items (negative N means move 
forward)."
                                          (current-local-map)))))
 
 (defun vcomplete--setup-in-region ()
-  "Setup `vcomplete-mode' for the current buffer."
+  "Setup visual completions for the current buffer."
   (vcomplete--reset-vars)
   ;; This has the nice side effect of also checking whether
   ;; `completion-in-region-mode' is active.



reply via email to

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