[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm 30df93256b 4/4: Fix helm-show-action-window-other-win
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm 30df93256b 4/4: Fix helm-show-action-window-other-window docstring and options |
Date: |
Wed, 17 Jan 2024 07:00:15 -0500 (EST) |
branch: elpa/helm
commit 30df93256b962079006ab33759f41b8fd94f86bd
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Fix helm-show-action-window-other-window docstring and options
---
helm-core.el | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/helm-core.el b/helm-core.el
index 5fd4e313ba..8d1fe5d0c6 100644
--- a/helm-core.el
+++ b/helm-core.el
@@ -1025,17 +1025,17 @@ Only async sources than use a sentinel calling
If nil don't split and replace helm-buffer by the action buffer
in same window.
-If left display the action buffer at the left of helm-buffer.
-If right or any other value, split at right.
-
+Possible value are left, right, below and above.
Note that this may not fit well with some Helm window
configurations, so it has effect only when
`helm-always-two-windows' is non-nil."
:group 'helm
:type '(choice
(const :tag "Split at left" left)
- (const :tag "Don't split" nil)
- (other :tag "Split at right" right)))
+ (const :tag "Split at right" right)
+ (const :tag "Split below" below)
+ (const :tag "Split above" above)
+ (const :tag "Don't split" nil)))
(defcustom helm-cycle-resume-delay 1.0
"Delay used before resuming in `helm-run-cycle-resume'."