summaryrefslogtreecommitdiff
path: root/lisp/km-helm.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/km-helm.el')
-rw-r--r--lisp/km-helm.el18
1 files changed, 18 insertions, 0 deletions
diff --git a/lisp/km-helm.el b/lisp/km-helm.el
index 9be507a..b8d2dc0 100644
--- a/lisp/km-helm.el
+++ b/lisp/km-helm.el
@@ -44,5 +44,23 @@
(with-helm-alive-p
(helm-exit-and-execute-action #'org-open-file)))
+;;;###autoload
+(defun km/helm-display-buffer-below ()
+ (interactive)
+ (with-helm-alive-p
+ (helm-exit-and-execute-action
+ (lambda (b)
+ (display-buffer b '(display-buffer-below-selected))))))
+
+;;;###autoload
+(defun km/helm-find-file-below ()
+ (interactive)
+ (with-helm-alive-p
+ (helm-exit-and-execute-action
+ (lambda (f)
+ (select-window
+ (display-buffer (find-file-noselect f)
+ '(display-buffer-below-selected)))))))
+
(provide 'km-helm)
;;; km-helm.el ends here