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
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/
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
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
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
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
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
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 :