summaryrefslogtreecommitdiff
path: root/helm-external.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2012-09-20 12:54:23 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2012-09-20 12:54:23 +0200
commit32db807ef54e62ce61dce9d642cd6f3e3eefe573 (patch)
tree06a3589a60de0817653d0766f470f4a4da5bad6f /helm-external.el
parentdb0467822eb9d4b65c5dccfc87a60aadd584ddc0 (diff)
Issue #116 Fix and bind helm-c-open-file-with-default-tool in *find-files and locate.
* helm-external (helm-run-or-raise): Always pipe proc. * helm-files.el: Bind helm-c-open-file-with-default-tool in helm-find-files. Fix action transformer, always place new action to end. * helm-help.el add open file with default tool to doc. * helm-utils.el (helm-c-open-file-with-default-tool): Fix for emacs24+ (always pipe proc).
Diffstat (limited to 'helm-external.el')
-rw-r--r--helm-external.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/helm-external.el b/helm-external.el
index 0373fb6c..e0478c1d 100644
--- a/helm-external.el
+++ b/helm-external.el
@@ -87,7 +87,8 @@ When FILE argument is provided run EXE with FILE.
In this case EXE must be provided as \"EXE %s\"."
(lexical-let* ((real-com (car (split-string (replace-regexp-in-string
"%s" "" exe))))
- (proc (if file (concat real-com " " file) real-com)))
+ (proc (if file (concat real-com " " file) real-com))
+ process-connection-type)
(if (get-process proc)
(if helm-raise-command
(shell-command (format helm-raise-command real-com))