emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Bastien <bastienguerry@googlemail.com>
To: Bastien <bzg@gnu.org>
Cc: User <spamfilteraccount@gmail.com>, emacs-orgmode@gnu.org
Subject: Re: Re: Showing hidden subtree automatically if point is hidden	when the buffer is opened
Date: Wed, 29 Jul 2009 02:27:41 +0800	[thread overview]
Message-ID: <87ab2ou09h.fsf@bzg.ath.cx> (raw)
In-Reply-To: <87y6q93tay.fsf@bzg.ath.cx> (Bastien's message of "Tue, 28 Jul 2009 19:59:35 +0800")

Bastien <bzg@gnu.org> writes:

> User <spamfilteraccount@gmail.com> writes:
>
>> I added the timer, because I didn't know in which order the hooks
>> are run. If org-mode hook runs first and then saveplace's hook
>> which restores point then the above code has no effect.
>
> saveplace adds the hook at the end of the hooks list, by calling
> add-hook like this:
>
>   (add-hook 'find-file-hook 'save-place-find-file-hook t)
>                                                        ^
>
> The `t' means put this hook at the end.
>
> So your org-mode hook will be safely called *before* saveplace's.

Sorry, I mixed up the logic here -- the following hook is okay:

--8<---------------cut here---------------start------------->8---
(add-hook 'org-mode-hook
          (lambda ()
	    (when (outline-invisible-p)
	      (save-excursion
		(outline-previous-visible-heading 1)
		(org-show-subtree))))
          t)  ;; this makes sure this hook is run last
--8<---------------cut here---------------end--------------->8---

If you load this *after* loading the saveplace hook then it should 
be okay.  Thanks to Nick Dokos for shaking my brain on this :)

-- 
 Bastien

  reply	other threads:[~2009-07-28 18:32 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-27 14:00 Showing hidden subtree automatically if point is hidden when the buffer is opened User
2009-07-27 20:45 ` Bastien
2009-07-28  4:19   ` User
2009-07-28 11:59     ` Bastien
2009-07-28 18:27       ` Bastien [this message]
2009-07-28 18:46         ` User
     [not found]           ` <8035.1248807278@alphaville.usa.hp.com>
     [not found]             ` <9cf79dfd0907281208r7e43fdfbn17af4d9e521e6fc8@mail.gmail.com>
2009-07-28 19:18               ` Nick Dokos
2009-07-29  5:41           ` Bastien

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ab2ou09h.fsf@bzg.ath.cx \
    --to=bastienguerry@googlemail.com \
    --cc=bzg@gnu.org \
    --cc=emacs-orgmode@gnu.org \
    --cc=spamfilteraccount@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).