[Orgmode] skip entry with inherited tags

2010-05-18 Thread Matthias Teege
Moin, I'm using a simple skip-function to exclude todos from a list. (defun my-skip-someday-and-scheduled () "" (org-agenda-skip-entry-if 'scheduled 'regexp ":SOMEDAY:")) That works when the tag was assigned to an entry but not when it was inherited from a parent. How do I get all tags fo

Re: [Orgmode] Passing a table to org-babel shell script

2010-02-07 Thread Matthias Teege
On 11:33 Sat 06 Feb, Eric Schulte wrote: Moin, thanks for your reply > 1) allowing the user to specify a separator with a header argument as >follows >#+begin_src sh :var table=sec :separator , > cat < $table > EOF >#+end_src > >which would result in something

[Orgmode] Passing a table to org-babel shell script

2010-01-24 Thread Matthias Teege
Hello, I try to use a org-mode table as input to an shell script. It works, if I use a Table with one column. #+tblname: sec | Hello World | #+begin_src sh :var table=sec cat