emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Proposal: starting of parallel asynchronous shell processes


From: Bastien
Subject: Re: [O] Proposal: starting of parallel asynchronous shell processes
Date: Fri, 03 Aug 2012 15:33:14 +0200
User-agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.1.50 (gnu/linux)

Hi Tobias,

Tobias Naehring <address@hidden> writes:

> A poor man's solution to allow parallel shell processes would be to replace 
> the
> code fragment
>
>               (progn
>                 (message "Executing %s" cmd)
>                 (shell-command cmd))
>             (error "Abort"))))
>
> from `org-open-at-point' by
>
>               (progn
>                 (message "Executing %s" cmd)
>                 (shell-command cmd (generate-new-buffer "*org-shell-output")))
>             (error "Abort"))))

I've implement this poor man's solution.  The new buffers are added to
`clean-buffer-list-kill-buffer-names', and you can get rid of the
buffers with M-x clean-buffer-list RET.

Thanks for this idea,

-- 
 Bastien



reply via email to

[Prev in Thread] Current Thread [Next in Thread]