Re: [O] end-of-defun odd behaviour in org mode

2014-04-22 Thread Leo Liu
On 2014-04-22 10:51 +0200, Bastien wrote: Yeah -- I pushed a fix, relying back again on `org-forward-element' and `org-backward-element'. Thanks. seems to work fine now. Leo

Re: [O] end-of-defun odd behaviour in org mode

2014-04-21 Thread Leo Liu
On 2014-04-21 19:26 +0200, Bastien wrote: Commit 76fa97922 changed C-M-a and C-M-e to `org-backward-element' and `org-forward-element' but I know see it was wrong, so I partially reverted it, the old behavior makes more sense. Thanks. Thanks for reporting this,

[O] end-of-defun odd behaviour in org mode

2014-04-20 Thread Leo Liu
Hi there, While adding support for org-mode in easy-kill¹ I have discovered C-M-a and C-M-e work asymmetrically. C-M-e moves forward 2 headlines while C-M-a move back 1. Cheers, Leo Footnotes: ¹ https://github.com/leoliu/easy-kill

Re: [O] Can org-capture-templates be made more flexible?

2013-11-06 Thread Leo Liu
On 2013-11-06 16:15 +0800, Bastien wrote: I'm not sure I understand your use-case clearly: you need to invoke org-capture with no target file? Thanks for further explanations Exactly. I need the ability to send the org buffer created by capture to the Notes.app directly. The Notes.app handles

Re: [O] Can org-capture-templates be made more flexible?

2013-11-06 Thread Leo Liu
On 2013-11-07 00:25 +0800, Bastien wrote: In that case, using a target like (function ...) could do -- did you try this? thanks for the pointer. I glanced at this option while reading the org-capture-templates' doc. From org-capture-set-target-location: ((eq (car target) 'function)

[O] Can org-capture-templates be made more flexible?

2013-10-13 Thread Leo Liu
Hi there, I use https://github.com/leoliu/applescripts/blob/master/Notes.el to pull notes from Notes.app on OS X into an org buffer. Naturally I also want to hook something into org-capture to create new notes. However, it seems org-capture-templates requires a file-location of some sort, which

Re: [O] Can org-capture-templates be made more flexible?

2013-10-13 Thread Leo Liu
On 2013-10-13 18:17 +0800, Suvayu Ali wrote: How about using a dummy file? It's a workaround which I want to avoid if possible. Thus me asking here. Leo

[O] What happens to org-export-with-LaTeX-fragments

2013-05-14 Thread Leo Liu
Hi there, I am upgrading to org 8 and cleaning up my init. There are two variables that aren't defined any more: org-export-with-LaTeX-fragments and org-highlight-latex-fragments-and-specials. Could someone tell me what are the replacement for them? Thanks, Leo

Re: [O] What happens to org-export-with-LaTeX-fragments

2013-05-14 Thread Leo Liu
On 2013-05-14 21:02 +0800, Rasmus wrote: I'm looking at an old exporter and assume that you are interested in MathJax and HTML. . .? Thank you, Rasmus. Leo

Re: [O] Changing the maintainer

2013-04-19 Thread Leo Liu
On 2013-04-19 06:07 +0800, Carsten Dominik wrote: Bastien's activity has been unmatched. He has answered a huge amount of questions in the mailing list, fixed an uncounted number of bugs and he has been designing and applying changes over the entire breadth of the Org code base. This is no

Re: [O] org-export raises stringp nil error

2013-03-07 Thread Leo Liu
On 2013-03-08 14:40 +0800, Bastien wrote: I find it hard to draw a clear line between regressions and bugs, especially since Org 7.9.x versions are way behind the current Org master branch. I think org-mode is better in ELPA, a better distribution channel than the core for things like

Re: [O] org-export raises stringp nil error

2013-03-07 Thread Leo Liu
On 2013-03-08 15:37 +0800, Bastien wrote: I strongly think otherwise: Emacs needs a good outline and editing tool. outline.el is not usable enough and I can see no other Emacs tool than Org-mode for exporting to HTML/LaTeX/ODT easily. I understand the temptation in terms of maintainance, but

[O] [PATCH] fix polluting minibuffer-local-map

2013-01-27 Thread Leo Liu
a/org.el b/org.el @@ -15578,57 +15578,57 @@ (defvar org-read-date-minibuffer-local-map (let ((map (make-sparse-keymap))) (set-keymap-parent map minibuffer-local-map) -(org-defkey minibuffer-local-map [(meta shift left)] +(org-defkey map [(meta shift left)] (lambda

[O] [BUG] org-mode fontification error [11 times]

2013-01-26 Thread Leo Liu
In an empty org buffer, type #+tit Then M-TAB to complete. You should observe: org-mode fontification error Org-mode version 7.9.3d (release_7.9.3d-892-gdfa07a) Leo