branch: elpa/helm
commit 9be9829a90edb6145c623348cfd80aa55dbbd9fc
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Fix wording issue with "actually"
---
helm-core.el | 4 ++--
helm-dabbrev.el | 2 +-
helm-files.el | 4 ++--
helm-grep.el | 4 ++--
helm-help.el | 4 ++--
helm-mode.el | 6 +++---
helm-source.el | 4 ++--
7 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/helm-core.el b/helm-core.el
index 932846d05e..bb599b639a 100644
--- a/helm-core.el
+++ b/helm-core.el
@@ -7280,7 +7280,7 @@ When `helm-full-frame' is non-nil, and `helm-buffer' is
displayed
in only one window, the helm window is split to display
`helm-select-persistent-action-window' in other window to
maintain visibility. The argument SPLIT can be used to force
-splitting inconditionally, it is unused actually."
+splitting inconditionally, it is unused currently."
(interactive)
(with-helm-alive-p
(let ((source (helm-get-current-source)))
@@ -7318,7 +7318,7 @@ splitting inconditionally, it is unused actually."
(when source
(with-helm-window
(save-selected-window
- ;; FIXME: Simplify SPLIT behavior, it is a mess actually.
+ ;; FIXME: Simplify SPLIT behavior, it is a mess currently.
(if no-split
(helm-select-persistent-action-window :split 'never)
(helm-select-persistent-action-window
diff --git a/helm-dabbrev.el b/helm-dabbrev.el
index a36d7c8b45..b7061ce213 100644
--- a/helm-dabbrev.el
+++ b/helm-dabbrev.el
@@ -54,7 +54,7 @@ Helm buffer."
(defcustom helm-dabbrev-related-buffer-fn #'helm-dabbrev--same-major-mode-p
"A function that decide if a buffer to search in its related to
`current-buffer'.
-This is actually determined by comparing `major-mode' of the
+This is currently determined by comparing `major-mode' of the
buffer to search and the `current-buffer'.
The function take one arg, the buffer which is current, look at
diff --git a/helm-files.el b/helm-files.el
index ab36c74e8f..0d1ba9bc3b 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -582,7 +582,7 @@ On Ubuntu-based distributions it is \\='trash-cli'."
(t #'helm-list-dir-lisp))
"The function used in `helm-find-files' to list remote directories.
-Actually Helm provides two functions to do this:
+Currently Helm provides two functions to do this:
`helm-list-dir-lisp' and `helm-list-dir-external'.
Using `helm-list-dir-external' will provide a similar display to
@@ -4678,7 +4678,7 @@ specifying the trash directory with TRASH-DIR arg."
;; ~/.local/share/Trash.
(cl-loop for f in (directory-files
(expand-file-name
- ;; helm-ff-default-directory is actually the
+ ;; helm-ff-default-directory is currently the
;; trash directory.
"info" (helm-basedir (directory-file-name
(or trash-dir
helm-ff-default-directory))))
diff --git a/helm-grep.el b/helm-grep.el
index f514e95e1b..0c5342cb71 100644
--- a/helm-grep.el
+++ b/helm-grep.el
@@ -1196,7 +1196,7 @@ of grep."
:initform nil
:documentation
" The grep backend that will be used.
- It is actually used only as an internal flag
+ It is currently used only as an internal flag
and doesn't set the backend by itself.
You probably don't want to modify this.")
(candidate-number-limit :initform 9999)
@@ -1243,7 +1243,7 @@ Argument DEFAULT-INPUT is use as `default' arg of `helm'
and
INPUT is used as `input' arg of `helm'. See `helm' docstring.
Arg BACKEND when non-nil specifies which backend to use.
-It is used actually to specify \\='zgrep' or \\='git'.
+It is used currently to specify \\='zgrep' or \\='git'.
When BACKEND \\='zgrep' is used don't prompt for a choice in
recurse, and ignore EXTS, search being made recursively on files
matching `helm-zgrep-file-extension-regexp' only."
diff --git a/helm-help.el b/helm-help.el
index 614ca058dd..8123ad4db3 100644
--- a/helm-help.el
+++ b/helm-help.el
@@ -807,7 +807,7 @@ instead its scp method if you want to avoid out of memory
problems and crash Emacs or the whole system. Moreover when using
scp method, you will hit a bug when copying more than 3 files at
the time, see [[https://github.com/emacs-helm/helm/issues/1945][bug#1945]].
-The best way actually is using Rsync to copy files from or to
+The best way currently is using Rsync to copy files from or to
remote, see [[Use Rsync to copy files][Use Rsync to copy files]].
Also if you often work on remote you may consider using SSHFS
instead of relying on tramp.
@@ -873,7 +873,7 @@ rsync command line with a prefix arg (see above).
Since Android doesn't provide anymore mass storage for USB, it is
not simple to access files on Android, the best way to do this
-actually seems to use Adb, here some hints to set this up, read
+currently seems to use Adb, here some hints to set this up, read
in addition the Tramp documentation.
1) Install Adb, most distribution provide it.
diff --git a/helm-mode.el b/helm-mode.el
index e64ed74869..470dbe69aa 100644
--- a/helm-mode.el
+++ b/helm-mode.el
@@ -1176,7 +1176,7 @@ the speed avoiding one useless loop on complete list of
candidates.
Returns a function and not a list of completions.
-It affects actually describe-variable/function/command/symbol functions.
+It affects currently describe-variable/function/command/symbol functions.
It uses `helm-get-first-line-documentation' which allow providing documentation
for `describe-variable' symbols and align properly documentation when helm
style
is used."
@@ -2337,7 +2337,7 @@ When AFUN, AFIX are nil and CATEGORY is not file return
COMPS unmodified."
(defun helm-completion-try-completion (string table pred point)
"The try completion function for `completing-styles-alist'.
-Actually does nothing."
+Currently does nothing."
;; AFAIU the try-completions style functions
;; are here to check if what is at point is suitable for TABLE but
;; there is no way to pass a multiple pattern from what is at point
@@ -2418,7 +2418,7 @@ Actually does nothing."
(suffix (substring afterpoint (cdr bounds)))
(all (helm-completion--multi-all-completions-1
;; Using `regexp-quote' on STRING fixes bug#2355 but
- ;; breaks regexp matching in multi match, actually with
+ ;; breaks regexp matching in multi match, currently with
;; Helm-3.7.1 and emacs-27+ it seems using plain STRING
;; works for both so use it.
;;(regexp-quote string)
diff --git a/helm-source.el b/helm-source.el
index 5c60522800..2ad8775cf2 100644
--- a/helm-source.el
+++ b/helm-source.el
@@ -21,7 +21,7 @@
;;; Commentary:
;; Interface to create helm sources easily.
-;; Actually the eieo objects are transformed in alist for compatibility.
+;; Currently the eieo objects are transformed in alist for compatibility.
;; In the future this package should allow creating source as eieo objects
;; without conversion to alist, teaching helm to read such a structure.
;; The compatibility with alists would be kept.
@@ -322,7 +322,7 @@
even if this transformation is done every time the pattern is
changed. For example, if a candidate set is very large then
`candidate-transformer' transforms every candidate while only
- some of them will actually be displayed due to the limit
+ some of them will currently be displayed due to the limit
imposed by `helm-candidate-number-limit'.
Note that `candidates' and `candidate-transformer' is run