From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Leha Subject: Re: meaningfull names for org-src buffers Date: Thu, 25 Sep 2014 21:22:07 +0100 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36024) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXFYZ-0005RP-RO for emacs-orgmode@gnu.org; Thu, 25 Sep 2014 16:22:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XXFYV-0005zo-7d for emacs-orgmode@gnu.org; Thu, 25 Sep 2014 16:22:27 -0400 Received: from plane.gmane.org ([80.91.229.3]:38030) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XXFYV-0005y4-14 for emacs-orgmode@gnu.org; Thu, 25 Sep 2014 16:22:23 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XXFYP-0007dh-0I for emacs-orgmode@gnu.org; Thu, 25 Sep 2014 22:22:17 +0200 Received: from cpc33-cmbg15-2-0-cust4.5-4.cable.virginm.net ([81.102.136.5]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 25 Sep 2014 22:22:17 +0200 Received: from andreas.leha by cpc33-cmbg15-2-0-cust4.5-4.cable.virginm.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 25 Sep 2014 22:22:17 +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 Hi Charles, Charles Berry writes: > Andreas Leha med.uni-goettingen.de> writes: > >> >> Hi, >> >> Grant Rettke wisdomandwonder.com> writes: >> > On Thu, Sep 11, 2014 at 5:05 PM, Adriaan Sticker >> > gmail.com> wrote: >> >> I was wondering if it's somehow possible to give named org src buffer the >> >> name they were give in their #+NAME tag? Now there are just called >> >> something like: >> >> *Org Src test.org[ R ]* >> >> >> >> But if you have multiple org-src buffers opened at the same time, its >> >> hard to find the correct one back. >> > >> > Excellent idea. I've got so many small source blocks that it is too >> > difficult to make sense of >> > keeping multiple source block edit buffers open and limit them to one >> > at a time eg >> > >> > ,---- >> > | (setq org-src-window-setup 'current-window) >> > `---- >> > >> > How have you come upon your workflow of keeping multiple open and what >> > are some of the pros and >> > cons that you've found with it? >> >> I'd be interested in this as well. >> >> Regards, >> Andreas >> >> > > Maybe I am answering the wrong question, but org-edit-src-code allows > you to specify the buffer name: > You are answering my exact question. > > ,----[ C-h f org-edit-src-code RET ] > | org-edit-src-code is an interactive compiled Lisp function in > | `org-src.el'. > | > | (org-edit-src-code &optional CONTEXT CODE EDIT-BUFFER-NAME) > | > | ... > `---- > > So you can do something like this: > > #+BEGIN_SRC emacs-lisp > (defun org-edit-src-code-plus-name () > (interactive) > (let* ((eop (org-element-at-point)) > (name (or (org-element-property :name (org-element-context eop)) > "unnamed")) > (lang (org-element-property :language eop)) > (buff-name (concat "*Org Src " name "[ " lang " ] *"))) > (org-edit-src-code nil nil buff-name))) > #+END_SRC > > which leads to a buffer named like "*Org Src My-block[ R ] *", where > 'My-block' is the name of the src block. > Thanks! On my first quick tests that works great! It is in my initialization and I'll use that regularly. Is there any drawback to this? Otherwise I'd advocate for org-edit-src-code doing that by default. > HTH, It sure does. Thanks, Andreas