Re: [O] Bug? Changed behaviour makes tags in headlines without a title parsed as the title

2015-04-10 Thread Anders Johansson
Den 2015-04-10 18:24, Nicolas Goaziou skrev: Hello, Anders Johansson writes: I have been using "degenerate" inlinetasks with empty titles but many tags for implementing a kind of coding scheme for coding texts for qualitative data analysis. Like this: - Some text that I want to tag (Th

[O] accessing source block header arguments from exporters

2015-04-10 Thread Robert Klein
Hi, is there a way, to read header arguments to source blocks in the exporters org--src-block funktions? E.g. is there a way to access :firstline in the example below? #+begin_src c++ -n :firstline 23 static struct { char*entity; unsigned char equiv

Re: [O] [Feature Request] [ENTER] or [C-Alt ENTER] while on headline skip over drawers automatically

2015-04-10 Thread Rasmus
Nicolas Goaziou writes: > Eventually, we could introduce a `org-return-hook' where an user could > add, e.g., > > (lambda () (when (org-at-heading-p) (org-end-of-meta-data) (insert > "\n"))) > > Opinions? +1. I'd also like a hook on C-RET. -- Not everything that goes around comes back ar

Re: [O] Bug: Agenda Custom Command org-agenda-prefix-format %l returns error [8.3beta (release_8.3beta-1025-g7b97b6 @ /home/dominik/.emacs.d/org-mode/lisp/)]

2015-04-10 Thread Nicolas Goaziou
Hello, Dominik Schrempf writes: > I tried to configure org-agenda-custom-commands by > > (setq org-agenda-custom-commands > '((" " "Agenda" > ((tags-todo "/!+TODO" > ((org-agenda-overriding-header "University") > (org-agenda-todo-ignore-s

Re: [O] accessing source block header arguments from exporters

2015-04-10 Thread Charles Berry
Robert Klein roklein.de> writes: > > Hi, > > is there a way, to read header arguments to source blocks in the > exporters org--src-block funktions? Not directly. org-babel-exp-code has no provision for headers. They get dropped. > > E.g. is there a way to access :firstline in the example bel