Skip to content

Commit

Permalink
don't show eshell message in quickrun-shell
Browse files Browse the repository at this point in the history
  • Loading branch information
syohex committed Aug 17, 2012
1 parent 179532b commit 0b66bff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion quickrun.el
Expand Up @@ -40,6 +40,7 @@
(require 'cl))

(require 'ansi-color)
(require 'em-banner)
(require 'eshell)

(defgroup quickrun nil
Expand Down Expand Up @@ -428,7 +429,8 @@ if you set your own language configuration.

(defun quickrun/send-to-shell (cmd-lst)
(let ((cmd-str (quickrun/concat-commands cmd-lst))
(eshell-buffer-name quickrun/eshell-buffer-name))
(eshell-buffer-name quickrun/eshell-buffer-name)
(eshell-banner-message ""))
(eshell)
(set (make-local-variable 'quickrun/shell-last-command) cmd-str)
(add-hook 'eshell-post-command-hook 'quickrun/eshell-post-hook)
Expand Down

0 comments on commit 0b66bff

Please sign in to comment.