summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThierry Volpiatto <thievol@posteo.net>2021-10-09 08:35:42 +0200
committerThierry Volpiatto <thievol@posteo.net>2021-10-09 08:38:49 +0200
commit7b5b03ec16cdbcf29b7c8e4bfba72756381e6f54 (patch)
tree5bfdde468251ca8d75e97e71d2f56e9ff0d9ad90
parent29afb09ec3266e8b3fc3b03215dba1e12caca114 (diff)
Comments only
-rw-r--r--helm-files.el15
1 files changed, 8 insertions, 7 deletions
diff --git a/helm-files.el b/helm-files.el
index 252bde74..43fc6b11 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -1520,8 +1520,8 @@ this working."
(string-match "\\$\\* ?&?\\'" alias-value)))
(cdr cand-list))
- ;; Run eshell-command with ALL marked files as arguments.
- ;; This wont work on remote files, because tramp handlers depends
+ ;; Run eshell-command with ALL marked files as argument.
+ ;; This wont work on remote files, because tramp handlers depend
;; on `default-directory' (limitation).
(let ((mapfiles (mapconcat 'shell-quote-argument cand-list " ")))
(if (string-match "%s" command)
@@ -1541,8 +1541,9 @@ this working."
(helm-basedir f))
;; We can use basename here as the command will run
;; under default-directory.
- ;; This allow running e.g. "tar czvf test.tar.gz
- ;; %s/*" without creating an archive expanding from /home.
+ ;; This allows running e.g.
+ ;; "tar czvf test.tar.gz %s/*" without creating
+ ;; an archive expanding from /home.
for file = (shell-quote-argument (helm-basename f))
;; \@ => placeholder for file without extension.
;; \# => placeholder for incremental number.
@@ -1556,15 +1557,15 @@ this working."
(file-name-sans-extension file))
it t t))
for com = (if (string-match "%s" fcmd)
- ;; [1] This allow to enter other args AFTER filename
+ ;; [1] This allows to enter other args AFTER filename
;; i.e <command %s some_more_args>
(format fcmd file)
(format "%s %s" fcmd file))
do (let ((default-directory (or dir default-directory)))
(eshell-command com))))
- ;; Async process continue running but don't need anymore
+ ;; Async process continues running but doesn't need anymore
;; the advice at this point (see the `eshell-eval-command'
- ;; call in `eshell-command'.) .
+ ;; call in `eshell-command').
(unless (> emacs-major-version 27)
(advice-remove 'eshell-eval-command #'helm--advice-eshell-eval-command)))))))