[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/hyperbole a2e2dc3 08/53: Made smart-helm ignore helm ca
From: |
Robert Weiner |
Subject: |
[elpa] externals/hyperbole a2e2dc3 08/53: Made smart-helm ignore helm candidate separator lines. |
Date: |
Wed, 15 Nov 2017 22:46:59 -0500 (EST) |
branch: externals/hyperbole
commit a2e2dc387718e726cf5aecf9d368ee8360b29df8
Author: Bob Weiner <address@hidden>
Commit: Bob Weiner <address@hidden>
Made smart-helm ignore helm candidate separator lines.
---
hui-mouse.el | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/hui-mouse.el b/hui-mouse.el
index af003d8..d17a05b 100644
--- a/hui-mouse.el
+++ b/hui-mouse.el
@@ -445,14 +445,16 @@ Assumes Hyperbole has already checked that point is in a
helm buffer."
On a candidate line, performs the candidate's first action and remains in
the minibuffer;
On the first header line, displays a list of actions available for the
selected candidate;
On an action list line, performs the action after exiting the minibuffer;
- At the end of the buffer, quits from helm and exits the minibuffer."
+ At the end of the buffer, quits from helm and exits the minibuffer.
+ On a candidate separator line, does nothing."
(let ((non-text-area-p (and (eventp action-key-depress-args)
(posn-area (event-start
action-key-depress-args))))
+ (separator (helm-pos-candidate-separator-p))
(eob (eobp)))
(smart-helm-resume-helm)
(if (> (minibuffer-depth) 0)
(select-window (minibuffer-window)))
- (when (smart-helm-alive-p)
+ (when (and (smart-helm-alive-p) (not separator))
(let* ((key (kbd (cond
(eob "C-g")
;; If line of the key press is the first /
@@ -469,8 +471,7 @@ Assumes Hyperbole has already checked that point is in a
helm buffer."
(if hkey-debug
(message "(HyDebug): In smart-helm, key to execute is: {%s};
binding is: %s"
(key-description key) binding))
- (call-interactively binding)
- ))))
+ (call-interactively binding)))))
(defun smart-helm-assist()
"Displays the selected item (including its action for the helm line at
point."
- [elpa] externals/hyperbole updated (0539520 -> 9b2d75a), Robert Weiner, 2017/11/15
- [elpa] externals/hyperbole 4fdcb7d 02/53: 2016-08-17 Bob Weiner <address@hidden>, Robert Weiner, 2017/11/15
- [elpa] externals/hyperbole 3aea4ee 07/53: Changes to hui-window.el had not been saved in prior commit., Robert Weiner, 2017/11/15
- [elpa] externals/hyperbole a2e2dc3 08/53: Made smart-helm ignore helm candidate separator lines.,
Robert Weiner <=
- [elpa] externals/hyperbole a6acb39 04/53: 2016-09-08 Bob Weiner <address@hidden>, Robert Weiner, 2017/11/15
- [elpa] externals/hyperbole 488bb31 13/53: hib-debbugs.el: Removed dependency on package.el which some people don't want/need loaded., Robert Weiner, 2017/11/15
- [elpa] externals/hyperbole 992870d 12/53: Speeded up search for and addition of a single git project to the dir cache., Robert Weiner, 2017/11/15
- [elpa] externals/hyperbole 1b40c4e 14/53: hib-social.el: When a git-reference is activated, trigger an error if `locate' command is not found., Robert Weiner, 2017/11/15
- [elpa] externals/hyperbole ddd114d 01/53: 2016-08-12 Bob Weiner <address@hidden>, Robert Weiner, 2017/11/15
- [elpa] externals/hyperbole 4ace769 17/53: Added brief pulsing/flashing from source line to line in destination buffer., Robert Weiner, 2017/11/15
- [elpa] externals/hyperbole 632789b 18/53: Made Action Key display selected buffer menu item in the same window as the buffer menu., Robert Weiner, 2017/11/15
- [elpa] externals/hyperbole fed1547 09/53: * hib-social.el (hibtypes-social-default-service): Changed to use a radio, Robert Weiner, 2017/11/15
- [elpa] externals/hyperbole a933051 19/53: Supported Emacs button mouse action; improved Lisp outlining support; improved load library links, Robert Weiner, 2017/11/15
- [elpa] externals/hyperbole 06d6cf1 16/53: V6.0.2a; Action Key drag from buffer, file and helm buffer item menus to another window to display., Robert Weiner, 2017/11/15