rejeep / prodigy.el

Manage external services from within Emacs
GNU General Public License v3.0
552 stars 39 forks source link

Append to process buffer #19

Closed julienfantin closed 10 years ago

julienfantin commented 10 years ago

The process output is inserted at point, which gets really messy if you scrolled through the output and it keeps outputting.

It would be great to save-excursion instead of following in case you did scroll through, but I wasn't sure how to achieve this without introducing some complexity...

rejeep commented 10 years ago

I got my hands dirty and did it the complex way. See https://github.com/rejeep/prodigy.el/commit/cab5c2b7097546b45fbcf83156360738e25371f5

Thanks for reporting!