Re: [O] convert outline to .csv

2016-01-17 Thread briangpowell .
* Something like this might do it: tr "\n" "\",\"" < file > newfile sed -e "s/\",\"* /\n\",\"*/g" newfile > blah.csv On Mon, Jan 18, 2016 at 1:44 AM, Andrew wrote: > Example: > > * Micro topic 1 > ** Microbes are small > ** You can't see them! > *** Isn't that something? > * Micro topic 2 > **

[O] convert outline to .csv

2016-01-17 Thread Andrew
Example: * Micro topic 1 ** Microbes are small ** You can't see them! *** Isn't that something? * Micro topic 2 ** I hope I like the teacher *** She will be great! ** Micro is cool! I'd like to convert them into a .csv file like so: "* Micro topic 1"," "** Microbes are small", "** You can't see

[O] some publish html options gone

2016-01-17 Thread Manuel Koell
When I try to use `M-x customize` and search for `org-html-doctype` or `org-html5-fancy` I don't get any match. I still have them in my custom.el file, generated from an older emacs version (24.3). Were they removed? Emacs: 25.1.50.2 Org: 8.3.2

Re: [O] isearch-forward at end of entry

2016-01-17 Thread Kyle Meyer
Michael Brand writes: > Hi all > > With today's release_8.3.2-441-ga87dea3 on Emacs 24.5 and this org > file > > > * d > - e > - f > * g > > > when d is folded: After "M-< C-s f RET" the entry d is folded but I > expect it to remain unfolded like afte

Re: [O] Why does evaluating a piece of Elisp code seemingly not expand a macro?

2016-01-17 Thread Marcin Borkowski
On 2016-01-15, at 11:57, Oleh Krehel wrote: > Marcin Borkowski writes: > >> Why? > > Macro-expand the defun to get: > > (defalias 'print-answer > #'(lambda nil > (message > "The answer is %s." > (forty-two > > `lambda' is a macro that /quote

Re: [O] Bug: non-breaking space before formatted text breaks the formatting [8.3.2 (8.3.2-51-g713fe8-elpa @ /home/wilx/.emacs.d/elpa/org-20151221/)]

2016-01-17 Thread Václav Haisman
On 17.1.2016 22:42, Nicolas Goaziou wrote: > Hello, > > Václav Haisman writes: > >> * Testing output with non-breaking space >> >> This is to show issue with using Unicode’s non-breaking space character >> before formatted text. Org-mode does not parse the formatting if the >> non-breaking space

Re: [O] Bug: non-breaking space before formatted text breaks the formatting [8.3.2 (8.3.2-51-g713fe8-elpa @ /home/wilx/.emacs.d/elpa/org-20151221/)]

2016-01-17 Thread Nicolas Goaziou
Hello, Václav Haisman writes: > * Testing output with non-breaking space > > This is to show issue with using Unicode’s non-breaking space character > before formatted text. Org-mode does not parse the formatting if the > non-breaking space is there. Org indeed doesn't give any special meaning

Re: [O] Scope issue: "SCHEDULED/DEADLINE" in blocks are being evaluated

2016-01-17 Thread Nicolas Goaziou
Hello, Karl Voit writes: > Unfortunately, this fix (or any other commit?) prevents my > non-recurring tasks to be completed when I got "DEADLINE" or > "SCHEDULED" in the body text within blocks or comments. > > So I guess the new scope is too generous. > > It's an edge-case but it should be fixe

Re: [O] org-player and switch to lexical binding in org.el

2016-01-17 Thread Michael Brand
Hi Paul It seems that this is beyond of my knowledge and I would like to ask you as the author of org-player for help. On Sun, Jan 17, 2016 at 9:40 PM, Nicolas Goaziou wrote: > Hello, > > Michael Brand writes: > >> release_8.3.3-426-g1f49e9f introduces a regression. The link >> >> [[file:/

Re: [O] org-player and switch to lexical binding in org.el

2016-01-17 Thread Michael Brand
Hi Paul It seems that this is beyond of my knowledge and I would like to ask you as the author of org-player for help. On Sun, Jan 17, 2016 at 9:40 PM, Nicolas Goaziou wrote: > Hello, > > Michael Brand writes: > >> release_8.3.3-426-g1f49e9f introduces a regression. The link >> >> [[file:/d

Re: [O] lexical binding breaks org-font-lock-set-keywords-hook

2016-01-17 Thread Nicolas Goaziou
Hello, mc writes: > may I ask, how one would possibly access and set the formerly dynamically > bound variable > > `org-font-lock-extra-keywords' > > as this is still recommended by the doc-string of > org-font-lock-set-keywords-hook > > now that org.el was switched to lexical binding by com

Re: [O] table-of-contents with body-only for html export

2016-01-17 Thread L . Larrabee Strow
Oh my, so easy, thank you. Just FYI, what makes this work so nicely for me is that I can place the TOC *after* and #+BEGIN_EXPORT HTML block which contains Hugo web site generator YAML instructions, which must be at the top of the file. So, I am now happily producing a HUGO website with org-mode

Re: [O] table-of-contents with body-only for html export

2016-01-17 Thread Nicolas Goaziou
Hello, Larrabee Strow writes: > I'd like to get toc:t to produce an html table-of-contents with body-only > true? > > Is that possible? From what I can tell if body-only in the export, you > will never get a toc. See #+TOC in the manual. Regards, -- Nicolas Goaziou

Re: [O] org-player and switch to lexical binding in org.el

2016-01-17 Thread Nicolas Goaziou
Hello, Michael Brand writes: > release_8.3.3-426-g1f49e9f introduces a regression. The link > > [[file:/dir/audio.mp3::0:12:34]] > > results in > > Debugger entered--Lisp error: (void-variable search) > (org-player-play-file file search) > [...] > org-open-file("/dir/au

[O] table-of-contents with body-only for html export

2016-01-17 Thread Larrabee Strow
I'd like to get toc:t to produce an html table-of-contents with body-only true? Is that possible? From what I can tell if body-only in the export, you will never get a toc. Thanks. -- L. Larrabee Strow UMBC Physics Department Email: st...@umbc.edu Phone:

Re: [O] Exporting Source Blocks with Symbols

2016-01-17 Thread Michael Gauland
Just following up with my solution, in case anyone else is interested (thanks to John Kitchin for pointing me in the right direction). First, I should note that 'µ' exported correctly because I was using the unicode element 'MICRO SYMBOL' instead of 'GREEK SMALL LETTER MU' (which looks the same, bu

[O] org-player and switch to lexical binding in org.el

2016-01-17 Thread Michael Brand
Hi all release_8.3.3-426-g1f49e9f introduces a regression. The link [[file:/dir/audio.mp3::0:12:34]] results in Debugger entered--Lisp error: (void-variable search) (org-player-play-file file search) [...] org-open-file("/dir/audio.mp3" nil nil "0:12:34") [...]

Re: [O] Seeing Actual Emphasis in Orgmode Buffer

2016-01-17 Thread Kenneth Jacker
> What do you get? character: o (111, #o157, #x6f) preferred charset: ascii (ASCII (ISO646 IRV)) code point: 0x6F syntax: w which means: word category: .:Base, a:ASCII, l:Latin, r:Roman buffer code: #x6F file code: #x6F (encoded by coding syst

Re: [O] backend for todo.txt format (todotxt.com)

2016-01-17 Thread Stefan Huchler
Hi, first thanks it at least does something now. Rasmus writes: > It doesn't need a solution, but I think you need one of the "forked" > version since some tag is missing. Maybe this one > > https://github.com/blaa/org-caldav for what exactly do you think do I need such fork? for sync

Re: [O] Scope issue: "SCHEDULED/DEADLINE" in blocks are being evaluated

2016-01-17 Thread Marco Wahl
Rasmus writes: > Karl Voit writes: > >> Unfortunately, this fix (or any other commit?) prevents my >> non-recurring tasks to be completed when I got "DEADLINE" or >> "SCHEDULED" in the body text within blocks or comments. > > Isn't this the this feature? The Org syntax¹ specifies: > Footnotes:

Re: [O] Losing trust in Org: stable org-mode releases and unit tests for basic functionality

2016-01-17 Thread Marco Wahl
Karl Voit writes: > So: what should I do to get reliable Org-mode in future to minimize > the chances of losing tasks or my trust in Org? I think Achim says the right things. Further I think you can improve Org's reliability (and your perception on it) by investing more energy into Org. Obviou

Re: [O] Scope issue: "SCHEDULED/DEADLINE" in blocks are being evaluated

2016-01-17 Thread Rasmus
Karl Voit writes: > Unfortunately, this fix (or any other commit?) prevents my > non-recurring tasks to be completed when I got "DEADLINE" or > "SCHEDULED" in the body text within blocks or comments. Isn't this the this feature? The Org syntax¹ specifies: A planning is an element with th

Re: [O] Scope issue: "SCHEDULED/DEADLINE" in blocks are being evaluated

2016-01-17 Thread Marco Wahl
Hi Karl! >> Karl Voit writes: [...] > Unfortunately, this fix (or any other commit?) prevents my > non-recurring tasks to be completed when I got "DEADLINE" or > "SCHEDULED" in the body text within blocks or comments. > It's an edge-case but it should be fixed. When I do mark the following thr

[O] lexical binding breaks org-font-lock-set-keywords-hook

2016-01-17 Thread mc
Hello, may I ask, how one would possibly access and set the formerly dynamically bound variable `org-font-lock-extra-keywords' as this is still recommended by the doc-string of org-font-lock-set-keywords-hook now that org.el was switched to lexical binding by commit 1f49e9fd 01/10/2016 0

[O] Bug: non-breaking space before formatted text breaks the formatting [8.3.2 (8.3.2-51-g713fe8-elpa @ /home/wilx/.emacs.d/elpa/org-20151221/)]

2016-01-17 Thread Václav Haisman
* Testing output with non-breaking space This is to show issue with using Unicode’s non-breaking space character before formatted text. Org-mode does not parse the formatting if the non-breaking space is there. I am using the non-breaking space character because I export some Org documents using

Re: [O] backend for todo.txt format (todotxt.com)

2016-01-17 Thread Rasmus
Hi, Stefan Huchler writes: > hmm then each task have to get assigned to a date I guess? Despite that > I kind of like that solution, the name of the app is tasks btw but > there are 2 with that name in f-droid, the right one has a green > background and is lisensed under apache2 lisense. It doe

Re: [O] Losing trust in Org: stable org-mode releases and unit tests for basic functionality

2016-01-17 Thread Achim Gratz
Karl Voit writes: > I had several occasions where "git pull origin master" ended up in > much work for fixing my large set of Org-mode data. That's the development branch which can introduce new features and remove old ones at any time, you should be on maint if you want "stable". If you want ev

[O] Losing trust in Org: stable org-mode releases and unit tests for basic functionality

2016-01-17 Thread Karl Voit
Hi! I want to re-heat the discussion of last summer about stable releases[1] of Org-mode: * Scott Randby wrote: > While I've used Org's development version in the past, I stopped doing > that due to my failure to learn how to use git (no time) and other > issues. Now, I only use the stable rel

[O] Scope issue: "SCHEDULED/DEADLINE" in blocks are being evaluated (was: Recurring todos gets closed and not re-scheduled)

2016-01-17 Thread Karl Voit
Hi Marco! * Marco Wahl wrote: > Hi! > > Karl Voit writes: > >> I recently updated Org to d85ff34086e5398b7c83cf66694f3f7d09695ce8 >> (git). >> >> When I mark following recurring todos as done, all of them gets >> marked as DONE and CLOSED. >> >> ,[ examples before being marked as DONE ] >> |