Hi Tobias, Tobias Naehring <i_in...@tn-home.de> 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