branch: elpa/hyperdrive
commit b35225f7e8e96f215b3170a0776d73ec3a2caff1
Author: Joseph Turner <jos...@ushin.org>
Commit: Joseph Turner <jos...@ushin.org>

    Change: (*-find-at-point) mouse-1 and -2 opens file in other window
    
    This emulates Dired.
---
 hyperdrive-dir.el     | 2 +-
 hyperdrive-history.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hyperdrive-dir.el b/hyperdrive-dir.el
index 5394c09eac..417ce8ecfd 100644
--- a/hyperdrive-dir.el
+++ b/hyperdrive-dir.el
@@ -270,7 +270,7 @@ With point on header, returns directory entry."
   "Find entry at EVENT's position."
   (interactive "e")
   (mouse-set-point event)
-  (call-interactively #'hyperdrive-dir-find-file))
+  (call-interactively #'hyperdrive-dir-find-file-other-window))
 
 ;; FIXME: Update these docstrings regarding "Interactively...".
 
diff --git a/hyperdrive-history.el b/hyperdrive-history.el
index 6819bddb5e..e27e2a3013 100644
--- a/hyperdrive-history.el
+++ b/hyperdrive-history.el
@@ -37,7 +37,7 @@
   "Find entry at EVENT's position."
   (interactive "e")
   (mouse-set-point event)
-  (call-interactively #'hyperdrive-history-find-file))
+  (call-interactively #'hyperdrive-history-find-file-other-window))
 
 (defun hyperdrive-history-pp (thing)
   "Pretty-print THING.

Reply via email to