From: Thorsten Jolitz <tjolitz@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: Expanded property drawers as per file option
Date: Thu, 30 May 2013 00:32:55 +0200 [thread overview]
Message-ID: <87sj15to14.fsf@gmail.com> (raw)
In-Reply-To: 2013-05-29T21-55-35@devnull.Karl-Voit.at
Karl Voit <devnull@Karl-Voit.at> writes:
> * Feng Shu <tumashu@gmail.com> wrote:
>> Thorsten Jolitz <tjolitz@gmail.com> writes:
>>
>>> Thorsten Jolitz <tjolitz@gmail.com> writes:
>>>
>>> ,-------------------------------------
>>> | (defun find-org-contracts ()
>>> | (interactive)
>>> | (find-file "/path/to/contracts.org")
>>> | (show-all))
>>> |
>>> | M-x find-org-contracts
>>> `-------------------------------------
>>
>> I use:
>> #+STARTUP: showeverything
>
> Those two methods result in expanded properties, yes.
>
> However, I obviously was not precise enough to explain my
> requirement which is more complicated than "showeverything".
>
> I would like to have all headings folded when I open the file (as it
> is now). Then I navigate to a heading of a person by using text
> search or arrow keys and TAB (to expand hierarchies).
For me both 'show-entry' and 'show-children' open the property drawer of
a headline. I actually use these two for visibility cycling:
,-------------------------------------------------------
| [From `outline-mode-easy-bindings']
|
| (defun outline-show-more ()
| (interactive)
| (when (outline-on-heading-p)
| (cond ((and (outline-subheadings-p)
| (not (outline-subheadings-visible-p)))
| (show-children))
| ((and (not (outline-subheadings-p))
| (not (outline-body-visible-p)))
| (show-subtree))
| ((and (outline-body-p)
| (not (outline-body-visible-p)))
| (show-entry))
| (t
| (show-subtree)))))
|
|
| (defun outline-hide-more ()
| (interactive)
| (when (outline-on-heading-p)
| (cond ((and (outline-body-p)
| (outline-body-visible-p))
| (hide-entry)
| (hide-leaves))
| (t
| (hide-subtree)))))
`-------------------------------------------------------
With these bindings:
,---------------------------------------------------------------------
| (let ((map outline-mode-map))
| (outshine-define-key-with-fallback
| map (kbd "M-<left>") (outline-hide-more) (outline-on-heading-p))
| (outshine-define-key-with-fallback
| map (kbd "M-<right>") (outline-show-more) (outline-on-heading-p)) [...]
`---------------------------------------------------------------------
and these docs:
,---------------------------------------------------------------------------
| <M-right> runs the command outline-show-more, which is an interactive Lisp
| function in `outshine.el'.
|
| It is bound to <M-right>.
|
| (outline-show-more)
`---------------------------------------------------------------------------
,--------------------------------------------------------------------
| outline-hide-more is an interactive Lisp function in `outshine.el'.
|
| (outline-hide-more)
`--------------------------------------------------------------------
--
cheers,
Thorsten
next prev parent reply other threads:[~2013-05-29 22:33 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-28 14:21 Expanded property drawers as per file option Karl Voit
2013-05-28 14:40 ` Thorsten Jolitz
2013-05-28 14:45 ` Thorsten Jolitz
2013-05-28 14:58 ` Thorsten Jolitz
2013-05-29 4:31 ` Feng Shu
2013-05-29 20:09 ` Karl Voit
2013-05-29 22:32 ` Thorsten Jolitz [this message]
2013-06-01 6:13 ` Carsten Dominik
2013-06-01 16:30 ` Karl Voit
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=87sj15to14.fsf@gmail.com \
--to=tjolitz@gmail.com \
--cc=emacs-orgmode@gnu.org \
/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).