[O] [PATCH] minor patch to org-babel-load-file

2013-06-18 Thread Levin Du
Hi, all I find org-babel-load-file not work for my emacs-starter-kit org file. After some traces, I find that (org-babel-merge-params nil nil nil) returns: ((:comments . "") (:shebang . "") (:cache . "") (:padline . "") (:noweb . "") (:tangle . "") (:exports . "") (:results . "")) which

[O] Bug: :clock-in not working in org-capture-templates [7.9.1 (release_7.9.1-274-g2f4d76)]

2012-09-20 Thread Levin Du
Hi there, I find :clock-in not work in org-capture-templates, with initial empty heading: (setq org-capture-templates '(("j" "Journal" entry (file+datetree "") "* %?\n%U\n%i\n" :clock-in t :clock-resume t))) I proposed the patch: Modified lisp/org-clock.el diff --git a/

[Orgmode] org-olpath-completing-read is not friendly with partial-completion-mode

2009-10-15 Thread Levin Du
Try this: (partial-completion-mode t) (funcall 'org-olpath-completing-read "? " '("todo1.org/tasks/" "todo1.org/tasks/normal/" "todo1.org/tasks/urgent/" "note.org/") nil t nil nil) todo It stays on todo1.org/ (Sole completion) my raw patch: diff

[Orgmode] [PATCH]new org-columns-nth-allowed-value function and keys

2008-06-03 Thread Levin Du
Hi list, While editing with Org column view, I'd like some easy navigate and modify keys. In the patch attached (against git version), I bind vi-style key h,j,k,l to move around, and numeric key 1-9,0 to set the nth (actually '1' is the first, and '0' is the last) allowed value. I mock up this by

[Orgmode] [patch]org-blog.el: fix broken org-publish-blog-index

2008-05-28 Thread Levin Du
I think the API has changed a bit. Patch attched:--- a/lisp/org-blog.el +++ b/lisp/org-blog.el @@ -170,11 +170,12 @@ Follow up with org-publish-all to upload to the site." ;; pluggable index generation function for org-publish. -(defun org-publish-blog-index (plist &optional index-filename) +(de

Re: [Orgmode] Org mode release 6.04

2008-05-27 Thread Levin Du
2008/5/28 Carsten Dominik <[EMAIL PROTECTED]>: > Fixed thanks. > > I cannot make an error message when you have misspelled a tag, because Org > cannot know > if you have inserted that string on purpose. > > But the loop is fixed now, and I am using now contents instead of content. > > - Carsten

Re: [Orgmode] Org mode release 6.04

2008-05-27 Thread Levin Du
I love the feature of "Editing source code example in the proper mode". It's very handy and powerful. I found a bug with org-mtags.el. The table of content tag in muse is , but in org is . If I write a simple org file with the misspelled tag: 8<8<--- * title1 * title2 8<8<--- the

[Orgmode] Let tab do org-cycle only at special place.

2007-05-23 Thread Levin Du
I've my busy tab key set to a super expand/indent function: (global-set-key "\t" 'ext-super-tab) Currently in org-mode, tab is only doing indent in none headline/special place. I'd like to use tab only at the beginning of headline or buffer. So I put something like this in my org-conf.el :