From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Jolitz Subject: Re: [ANN] Edit emails in Org-mode Date: Thu, 20 Jun 2013 14:01:43 +0200 Message-ID: <8761x90z4o.fsf@gmail.com> References: <8738sedkk4.fsf@gmail.com> <86ip19dzwh.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46584) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpdYv-00009Y-8I for emacs-orgmode@gnu.org; Thu, 20 Jun 2013 08:02:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UpdYt-0001VP-MJ for emacs-orgmode@gnu.org; Thu, 20 Jun 2013 08:02:01 -0400 Received: from plane.gmane.org ([80.91.229.3]:53847) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UpdYt-0001VI-FX for emacs-orgmode@gnu.org; Thu, 20 Jun 2013 08:01:59 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UpdYp-0007i7-Mj for emacs-orgmode@gnu.org; Thu, 20 Jun 2013 14:01:55 +0200 Received: from g231234057.adsl.alicedsl.de ([92.231.234.57]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 20 Jun 2013 14:01:55 +0200 Received: from tjolitz by g231234057.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 20 Jun 2013 14:01:55 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org "Sebastien Vauban" writes: Hello, its a nice idea to be able to replace the source-blocks by their results when composing messages (if I understood your feature request right). Opens a lot of possiblilities for (semi-)automatic email creation. Here is the doc-string: #+begin_src emacs-lisp (defun outorg-replace-source-blocks-with-results (&optional arg &rest languages) "Replace source-blocks with their results. Only source-blocks with ':export results' in their header arguments will be mapped. If LANGUAGES is non-nil, only those source-blocks with a language found in the list are mapped. If LANGUAGES is nil but a prefix-argument ARG is given, only the languages read from the mini-buffer (separated by blanks) are mapped. Otherwise, all languages found in `org-babel-load-languages' are mapped." ...) #+end_src it basically says: - only blocks with ':export results' will be mapped - blocks for all languages found in `org-babel-load-languages' will be mapped, except the function ist called (from a program) with a list of language names (as strings) or the user calls the command with prefix arg (e.g. C-u) and enters language names (like this: R emacs-lisp sh org). let me know if the function does what you wanted. Do we need a keybinding for that, or should it rather be a bit oscure (only accessible by M-x) to avoid confusing accidents? > Thorsten Jolitz wrote: >> 2.3 Usage >> ~~~~~~~~~ >> >> There are only two commands involved: >> >> Command Keybinding Comment >> ----------------------------------------------------------------------- >> M-x outorg-edit-as-org M-# M-# or M-# # outline-prefix M-# >> C-c ' outline-prefix C-c >> M-x outorg-copy-edits-and-exit M-# --- > > When I have "message" code blocks, and when I edit them in an indirect buffer > (for refilling them, for example), then I have a draft message that stays in > my Gnus/Message emails. > > Any idea how to get rid of that? > > Best regards, > Seb -- cheers, Thorsten