Re: [O] Emacs hangs while loading org file with python blocks

2016-12-06 Thread Clément Pit--Claudel
Hi David, It might be good to open a bug report on the Emacs side; a Python font-locking freeze was fixed on master recently, but there may be other ones (your example hangs Emacs for me too), and your profile doesn't seem very Org-specific. The following backtrace might be useful too:

Re: [O] Multiple underscores crash org latex export; other exporters survive

2016-12-06 Thread Scott Randby
On 12/06/2016 06:50 PM, Nicolas Goaziou wrote: > Hello, > > Scott Randby writes: > >> I don't think you can blame Org for the crashes you've experienced. Org >> exports the string "a_variable_deleteThisAndItWorks" to >> "a\(_{\text{variable}}_{\text{deleteThisAndItWorks}}\)"

[O] Emacs hangs while loading org file with python blocks

2016-12-06 Thread David Dynerman
Dear list, For several months I've been encountering a frustrating bug. My emacs hangs while initially loading an org file with ~3000 lines and around two dozen python blocks. If I press C-g during the lockup, emacs wakes up and the file is loaded. The hang does not re-occur after happening on

Re: [O] Add preamble support to ob-plantuml.el

2016-12-06 Thread Thibault Marin
Thanks for the feedback. >> What about using noweb syntax then? > > Or prologue? I didn't know about the prologue header. This is exactly what I need (it seems to be more convenient than the noweb approach). However, ob-plantuml does not seem to support the prologue option. So I am

Re: [O] Multiple underscores crash org latex export; other exporters survive

2016-12-06 Thread Nicolas Goaziou
Hello, Scott Randby writes: > I don't think you can blame Org for the crashes you've experienced. Org > exports the string "a_variable_deleteThisAndItWorks" to > "a\(_{\text{variable}}_{\text{deleteThisAndItWorks}}\)" which is not a > valid LaTeX expression. This invalid

Re: [O] question about org-coderef-label-format and HTML export

2016-12-06 Thread Nicolas Goaziou
Hello, dmg writes: > I was playing with org-coderef-label-format to reference lines of code > in blocks. > > I created a small example that overrides the default value: > > #+BEGIN_SRC C++ :main no :flags -std=c++14 -Wall --pedantic -Werror > :results output :exports

Re: [O] tangling and COMMENT entries

2016-12-06 Thread Nicolas Goaziou
Hello, Alan Schmitt writes: > When using org-babel-load-file, are entries with a COMMENT keyword > supposed to be tangled? I don't think so. Could you provide an ECM? Regards, -- Nicolas Goaziou

Re: [O] Org-mode 9 repeat schedule in item disappear with deadline

2016-12-06 Thread Nicolas Goaziou
Hello, 毛晓伟 writes: > I use the spacemacs, in org-mode 9,under TODO item,I set "SCHEDULED: > <2016-12-06 Tue 10:00-17:00 +1d> DEADLINE: <2016-12-09 Fri 18:00 -2d>", > press t , Done,and the 'SCHEDULED:' is disapear, only DEADLINE: > <2016-12-09 Fri 18:00 -2d>,I don't know why

Re: [O] Time-Event-Diagrams

2016-12-06 Thread Thierry Banel
Le 06/12/2016 18:54, Karl Voit a écrit : * Thierry Banel wrote: What about GnuPlot? Heard about it. Never used. #+plot: ind:1 deps:(2) type:2d with:"impulse lw 6" set:"yrange [0:]" | When

[O] [RFC] Preserving text-properties when moving columns in org-table

2016-12-06 Thread Stefan-W. Hahn
Hello, I'm using text-properties to mark special entries on org-tables. When moving columns around in such a propertized table, the text-properties got lost because moving around is realized with "replace-match", which does not save the text-properties. If replacing "replace-match" with

Re: [O] Multiple underscores crash org latex export; other exporters survive

2016-12-06 Thread Scott Randby
On 12/06/2016 02:19 AM, Scott Otterson wrote: > I understand that orgmode is literally copying Latex; I am suggesting > that orgmode should do more than copy. Org only literally copies some expressions. The expression "A_B_C" is not a LaTeX expression and it cannot be literally copied when

Re: [O] Time-Event-Diagrams

2016-12-06 Thread Karl Voit
* Thierry Banel wrote: > What about GnuPlot? Heard about it. Never used. > #+plot: ind:1 deps:(2) type:2d with:"impulse lw 6" set:"yrange [0:]" >| When | How many | >|--+--| >| [2016-11-17 Thu] |3 | >| [2016-11-23 Wed] |4

[O] tangling and COMMENT entries

2016-12-06 Thread Alan Schmitt
Hello, When using org-babel-load-file, are entries with a COMMENT keyword supposed to be tangled? I thought they were not, but I'm seeing them in the generated .el file. Thanks, Alan -- OpenPGP Key ID : 040D0A3B4ED2E5C7 Monthly Athmospheric CO₂, Mauna Loa Obs. 2016-10: 401.57, 2015-10: 398.29

Re: [O] Time-Event-Diagrams

2016-12-06 Thread Thierry Banel
Or with babel-gnuplot? The result is an SVG file that a web browser can display. #+name: whentable | When | How many | |--+--| | [2016-11-17 Thu] |    3 | | [2016-11-23 Wed] |   

Re: [O] Time-Event-Diagrams

2016-12-06 Thread Thierry Banel
What about GnuPlot? #+plot: ind:1 deps:(2) type:2d with:"impulse lw 6" set:"yrange [0:]" | When | How many | |--+--| | [2016-11-17 Thu] |3 | | [2016-11-23 Wed] |4 | | [2016-12-10 Sat] |1 | Type org-plot/gnuplot or C-c " g in the

Re: [O] How to use postgresql without password/username in source?

2016-12-06 Thread Marco Wahl
> I was using successfuly Org Mode with Postgresql, with defaults > settings for user and password. And I use latest Emacs from git. > > Now, I cannot execute SQL without specifing the user/password in > #BEGIN_SRC > > What settings would I need to do to avoid that? Hi Jean, You could use the

[O] How to use postgresql without password/username in source?

2016-12-06 Thread Jean Louis
I was using successfuly Org Mode with Postgresql, with defaults settings for user and password. And I use latest Emacs from git. Now, I cannot execute SQL without specifing the user/password in #BEGIN_SRC What settings would I need to do to avoid that? Jean

Re: [O] Org-mode 9 repeat schedule in item disappear with deadline

2016-12-06 Thread 毛晓伟
Thanks very much. Best Regards Xiaowei Mao 在 2016-12-06 22:07:24,"Michael Welle" 写道: >Hello, > >毛晓伟 writes: > >> Thanks, I join in the mail group just now. >> Do you know how to solve the problem ? >sorry, no solution yet. > >Regards >hmw >

Re: [O] Org-mode 9 repeat schedule in item disappear with deadline

2016-12-06 Thread Michael Welle
Hello, 毛晓伟 writes: > Thanks, I join in the mail group just now. > Do you know how to solve the problem ? sorry, no solution yet. Regards hmw

Re: [O] Org-mode 9 repeat schedule in item disappear with deadline

2016-12-06 Thread 毛晓伟
Thanks, I join in the mail group just now. Do you know how to solve the problem ? 在 2016-12-06 21:44:39,"Michael Welle" 写道: >Hello, > >毛晓伟 writes: >[...] >> I use the spacemacs, in org-mode 9,under TODO item,I set "SCHEDULED: >> <2016-12-06 Tue

Re: [O] Org-mode 9 repeat schedule in item disappear with deadline

2016-12-06 Thread Michael Welle
Hello, 毛晓伟 writes: [...] > I use the spacemacs, in org-mode 9,under TODO item,I set "SCHEDULED: > <2016-12-06 Tue 10:00-17:00 +1d> DEADLINE: <2016-12-09 Fri 18:00 -2d>", > press t , Done,and the 'SCHEDULED:' is disapear, only DEADLINE: > <2016-12-09 Fri 18:00 -2d>,I don't know

Re: [O] Org-mode 9 repeat schedule in item disappear with deadline

2016-12-06 Thread 毛晓伟
Hello, everyone, I have some try, when a repeat Schedule with deadline, change TODO to DONE, will produce " :LOGBOOK: - State "CANCELLED" from "TODO" [2016-12-05 Mon 23:09] \\ " I think maybe the "\\" is the source of problem, but for I'm new to programming and org-mode, I don't know how

[O] Org-mode 9 repeat schedule in item disappear with deadline

2016-12-06 Thread 毛晓伟
I use the spacemacs, in org-mode 9,under TODO item,I set "SCHEDULED: <2016-12-06 Tue 10:00-17:00 +1d> DEADLINE: <2016-12-09 Fri 18:00 -2d>",press t , Done,and the 'SCHEDULED:' is disapear, only DEADLINE: <2016-12-09 Fri 18:00 -2d>,I don't know why ?Anyone meet the problem ? when I try emacs -Q

[O] org-ref file path to pdf

2016-12-06 Thread Georg W. Otto
Dear all, This is probably something that has come up before, but so far I haven't found a solution: My problem concerns automatic file path expansion in my org-ref setting. According to the instructions in https://github.com/jkitchin/org-ref and

Re: [O] Add preamble support to ob-plantuml.el

2016-12-06 Thread Rainer M Krug
Nicolas Goaziou writes: > Thibault Marin writes: > >> I use it to define common skin options (http://plantuml.com/skinparam) >> for all the plantuml blocks in an org file. I don't know if there is a >> better way to that. > > What about using

Re: [O] [bug] timed repeater shows up in wrong place

2016-12-06 Thread Nicolas Goaziou
Hello, Samuel Wales writes: > the only feature that seems to be missing from 8 and 9maint that might > be needed in 9master is a list of strings for todo kw that should show > future repeats. thus you could say that NOTE does not show future > repeats, but NEXTREPEAT

Re: [O] Bug: Latex export fails with link in headline

2016-12-06 Thread Nicolas Goaziou
Hello, Scott Otterson writes: > Huh, the mystery deepens. Does TexLive really behave differently on Linux? > > Anyway, I'd argue that Org should do the minimum to prevent Latex crashes. > It seems that org is aiming to be a generic document format, which can be > exported

Re: [O] Add preamble support to ob-plantuml.el

2016-12-06 Thread Nicolas Goaziou
Thibault Marin writes: > I use it to define common skin options (http://plantuml.com/skinparam) > for all the plantuml blocks in an org file. I don't know if there is a > better way to that. What about using noweb syntax then? Regards,