From: Bingo UV <right.ho@gmail.com>
To: "emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: how to add some features in a newly added headline?
Date: Sat, 16 Jan 2016 22:48:58 +0530 [thread overview]
Message-ID: <20160116224858.3fc154b8@dhcppc15> (raw)
In-Reply-To: <CAJ51ETr-mbpUHpLyg7gTbYEdOkX9x-ccK1B+_NN1E5VEK5rZpg@mail.gmail.com>
Hi John,
Thanks a lot.
In org 8.3, there seems to be no org-end-of-meta-data-and-drawers. If I
replace it with org-end-of-meta-data, I get a PROPERTIES drawer which
is open, not collapsed. Since it is a new heading, it should have no
drawers, so I am guessing org-end-of-meta-data-and-drawers and
org-end-of-meta-data should be identical?
I don't want to sound too demanding about a collapsed PROPERTIES
drawer but it is so distracting I cannot stop myself from compulsively
collapsing it after adding every heading. Which is when I added the
insert-char and 2 org-cycles.
(sorry, meant to reply to mailing list, not personally)
On Sat, 16 Jan 2016 08:59:17 -0500
John Kitchin <jkitchin@andrew.cmu.edu> wrote:
> I would define a function for this, so you can call it only when you
> want. this does what you describe for me (org 8.2.10)
>
> (defun my-heading ()
> (interactive)
> (org-insert-heading)
> (org-id-get-create)
>
> (save-excursion ;-> add time stamp
> (org-end-of-meta-data-and-drawers)
> (newline)
> (org-time-stamp-inactive '(16))))
>
>
>
> On Sat, Jan 16, 2016 at 8:14 AM, Bingo UV <right.ho@gmail.com> wrote:
>
> > (add-hook 'org-insert-heading-hook
> > '(lambda()
> > (org-id-get-create) ;-> Adds ID property
> > (insert-char 48) ;-> required for next 2 org-cycles to
> > collapse the properties drawer
> > (org-cycle)
> > (org-cycle)
> > (save-excursion ;-> add time stamp
> > (org-end-of-meta-data t)
> > (org-time-stamp-inactive '(16))
> > (newline)
> > )
> > )
> > )
> >
>
>
>
> John
>
> -----------------------------------
> Professor John Kitchin
> Doherty Hall A207F
> Department of Chemical Engineering
> Carnegie Mellon University
> Pittsburgh, PA 15213
> 412-268-7803
> @johnkitchin
> http://kitchingroup.cheme.cmu.edu
prev parent reply other threads:[~2016-01-16 17:19 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-16 13:14 how to add some features in a newly added headline? Bingo UV
2016-01-16 13:59 ` John Kitchin
2016-01-16 17:18 ` Bingo UV [this message]
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=20160116224858.3fc154b8@dhcppc15 \
--to=right.ho@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).