emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] Re: Q : select current org item as region


From: Richard Riley
Subject: [Orgmode] Re: Q : select current org item as region
Date: Wed, 08 Sep 2010 21:40:52 +0200
User-agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.2 (gnu/linux)

Richard Riley <address@hidden> writes:

> What would be the best elisp way to select the current org entry? I want
> a hot key to select the current item as current region (not into the
> clipboard).
>
> The problem I am having is that org-in-item-p is returning nil even
> though the point is in an org-item. Is the docstring where it mentions
> "hand-formatted item" more significant that I understand? As a result
> org-beginning-of-item is failing
>
> Currently the function I have is (not working but to give you the idea
> of what I am trying to accomplish):
>
>     (defun rgr/org-blog-entry ()
>       (interactive)
>       (save-excursion 
>             (org-beginning-of-item)
>             (set-mark-command)
>             (org-end-of-item)
>             (let((tmpbuf (make-temp-file)))
>               (org-export-as-html nil nil tmpbuf t))))
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> address@hidden
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>

OK, minus several million for me for not digging  deep enough. "item" is
not an org item per se but a list item. I need the entry functions. So
its taking shape (but not working yet ..) as 

  (defun rgr/org-blog-entry ()
    (interactive)
    (save-excursion 
          (goto-char (org-entry-beginning-position))
          (set-mark (org-entry-end-position))
          (let((tmpfile (make-temp-file "org-blog-html-")))
            (org-export-as-html nil nil (find-file-noselect tmpfile) t))))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]