[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/shell-command+ 5c01598 09/36: fixed minor checkdoc comp
From: |
Stefan Monnier |
Subject: |
[elpa] externals/shell-command+ 5c01598 09/36: fixed minor checkdoc complaints |
Date: |
Fri, 25 Sep 2020 11:01:23 -0400 (EDT) |
branch: externals/shell-command+
commit 5c0159804d9ebf6e401403b5bd861cfe9a8af12a
Author: Philip K <philip@warpmail.net>
Commit: Philip K <philip@warpmail.net>
fixed minor checkdoc complaints
---
bang.el | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/bang.el b/bang.el
index a109b1a..104ee3b 100644
--- a/bang.el
+++ b/bang.el
@@ -26,7 +26,7 @@
;; Most of the internal code of `bang' has been rewritten for this sake.
;;
;; The original version can be found here:
-;; http://leahneukirchen.org/dotfiles/.emacs
+;; https://leahneukirchen.org/dotfiles/.emacs
(require 'rx)
@@ -66,7 +66,7 @@
(dolist (cmd bang--last-commands)
(when (string-prefix-p prefix cmd)
(throw 'found cmd)))
- (error "no such command in history")))
+ (error "No such command in history")))
(defun bang--get-command-number (arg rest)
"Helper function to find ARG'th last command.
@@ -106,7 +106,10 @@ When COMMAND starts with
Without any argument, `bang' will behave like `shell-command'.
Inside COMMAND, % is replaced with the current file name. To
-insert a literal % quote it using a backslash."
+insert a literal % quote it using a backslash.
+
+In case a region is active, bang will only work with the region
+between BEG and END. Otherwise the whole buffer is processed."
(interactive (list (read-shell-command "Bang command: ")
(if mark-active (region-beginning) (point-min))
(if mark-active (region-end) (point-max))))
- [elpa] externals/shell-command+ f004dfb 23/36: require at least one non-whitespace character in command, (continued)
- [elpa] externals/shell-command+ f004dfb 23/36: require at least one non-whitespace character in command, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ 55f3e2a 16/36: emulated insert-into-buffer feature from shell-command, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ f80c7c3 29/36: autoload bang command, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ 8758933 24/36: removed trailing whitespace, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ ab6bb0e 18/36: reworked `.' command, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ 87b5ad3 21/36: version bump, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ 339931d 36/36: rename bang to shell-command+, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ b5398d1 34/36: use eshell handler if available, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ 9b28c60 12/36: added melpa link, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ 49f3686 08/36: fixed package-lint issues, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ 5c01598 09/36: fixed minor checkdoc complaints,
Stefan Monnier <=
- [elpa] externals/shell-command+ 5e3def9 04/36: Fixed packaging issues and mistakes, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ 423c2af 15/36: updated README, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ 3fcab36 20/36: only execute real command, not bang modifiers, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ c395408 05/36: Re-added % substitution, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ 77989cf 26/36: renamed "Bang command" to "Shell command", Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ d60c01f 22/36: required rx while compiling, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ 1fb0162 27/36: bumped version, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ 0e0c725 35/36: simplify if-expressions where applicable, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ e023383 33/36: bumped version, Stefan Monnier, 2020/09/25
- [elpa] externals/shell-command+ f9e92f4 31/36: added two spaces after each period, Stefan Monnier, 2020/09/25