From 65c51072e660e95c2b15528d69d297e5ba581f66 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 16 Aug 2016 14:39:22 -0700 Subject: [PATCH] Require eshell for projectile shell-command hack --- dotfiles/emacs.d/README.org | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 83105dd1..80ca10fe 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -1948,6 +1948,9 @@ I use helm for almost all emacs completion **** Avoid shell-command-to-string See [[https://github.com/bbatsov/projectile/issues/1044][this issue]] for details. #+BEGIN_SRC emacs-lisp +;; We use `eshell-search-path' for this hack +(require 'eshell) + (defun projectile-call-process-to-string (program &rest args) (with-temp-buffer (apply 'call-process program nil (current-buffer) nil args)