From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: Cycling visibility of blocks Date: Mon, 25 May 2009 22:40:54 +0200 Message-ID: <87ljokncfd.fsf@kassiopeya.MSHEIMNETZ> References: <87skiuryr2.fsf@selenimh.orion.org> <87ljomnfni.fsf@kassiopeya.MSHEIMNETZ> <04195B46-5D81-4E64-8315-CD2085E49357@gmail.com> <87y6slmteu.fsf@kassiopeya.MSHEIMNETZ> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M8gv7-0005vw-FX for emacs-orgmode@gnu.org; Mon, 25 May 2009 16:37:17 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M8gv2-0005uL-0c for emacs-orgmode@gnu.org; Mon, 25 May 2009 16:37:17 -0400 Received: from [199.232.76.173] (port=57005 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M8gv1-0005uI-PJ for emacs-orgmode@gnu.org; Mon, 25 May 2009 16:37:11 -0400 Received: from mail.gmx.net ([213.165.64.20]:44819) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1M8gv1-000790-4k for emacs-orgmode@gnu.org; Mon, 25 May 2009 16:37:11 -0400 In-Reply-To: (Eric Schulte's message of "Mon, 25 May 2009 10:24:06 -0700") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Eric Schulte Cc: emacs-orgmode@gnu.org, Carsten Dominik "Eric Schulte" writes: > I've applied a slightly changed version of your regexp, and this is now > working for all block types (the resulting file is attached). Where > could this file be saved? The contrib directory seems like overkill for > such a small piece of functionality maybe I should post it up somewhere > on worg? Hmm - why don't you juste start a `Snippets' section? I don't mind Worg to grow. Didn't you see http://wiki.github.com/SebastianRose/org-search.php? Not doing very much yet, but it's under way :) Another good place would be inside Org-mode's core IMHO. Sebastian > ;;; org-block-hide.el --- hide blocks in org-mode files > > (defvar org-block-hide-src-block-regexp > "#\\+begin_\\([^ ]+\\) ?\\([ \t]+\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_\\1") > > (defun org-block-hide-src-block-cycle-maybe () > (let ((case-fold-search t)) > (if (save-excursion > (beginning-of-line 1) > (looking-at org-block-hide-src-block-regexp)) > (progn (call-interactively 'org-block-hide-src-block-cycle) > t) ;; to signal that we took action > nil))) ;; to signal that we did not > > (defun org-block-hide-src-block-cycle () > "Cycle the visibility of the current block" > (interactive) > ;; should really do this once in an (org-mode hook) > (add-to-invisibility-spec '(org-block-hide . t)) > (message "trying out source block") > (save-excursion > (beginning-of-line) > (if (re-search-forward org-block-hide-src-block-regexp nil t) > (let ((start (- (match-beginning 4) 1)) ;; beginning of body > (end (match-end 0))) ;; end of entire body > (if (memq t (mapcar (lambda (overlay) > (eq (overlay-get overlay 'invisible) 'org-block-hide)) > (overlays-at start))) > (remove-overlays start end 'invisible 'org-block-hide) > (overlay-put (make-overlay start end) 'invisible 'org-block-hide))) > (error "not looking at a source block")))) > > ;; org-tab-after-check-for-cycling-hook > (add-hook 'org-tab-first-hook 'org-block-hide-src-block-cycle-maybe) > > ;;; org-block-hide.el ends here -- Sebastian Rose, EMMA STIL - mediendesign, Niemeyerstr.6, 30449 Hannover Tel.: +49 (0)511 - 36 58 472 Fax: +49 (0)1805 - 233633 - 11044 mobil: +49 (0)173 - 83 93 417 Email: s.rose@emma-stil.de, sebastian_rose@gmx.de Http: www.emma-stil.de