[O] bokeh, ob-ipython and org-mode HTML export

2017-11-04 Thread Deepak Cherian
I have a blog post up that might be of interest to some of you on this list: http://cherian.net/posts/bokeh-org-mode.html. It looks at ways to embed interactive Javascript plots using bokeh when exporting org files to HTML (bokeh.pydata.org). Feedback and suggestions welcome! Deepak

Re: [O] org-capture-expand-file: Invalid file location: nil

2017-11-04 Thread Xi Shen
Hi Nicolas, Sorry, I missed this one. (global-set-key (kbd "C-c c") 'org-capture) OK, thanks for the tip. The problem lies in the "org-capture-templates" settings. I think in the past, it accept a "nil" argument. Now it expects an empty string. Replacing nil with empty string solves my problem.

[O] Why is there no org-agenda-todo-next-keyword function?

2017-11-04 Thread Somelauw .
In an org-agenda buffer the following functions are defined and bound: - org-agenda-todo-nextset (C-S-left) - org-agenda-todo-previousset (C-S-right) which change between sets of todo keywords. Yet the following corresponding functions are missing: - org-agenda-todo-next-keyword - org-agenda-todo-

Re: [O] Bug? Encoding trouble in org-id-locations-load

2017-11-04 Thread Nicolas Goaziou
Hello, Anders Johansson writes: > I tried changing the call to ~insert-file-contents-literally~ in > ~org-id-locations-load~ to just ~insert-file-contents~ and this seemed > to fix the behaviour (as correct decoding is done then?). I don’t know > if there are other unwanted effects from using ~i

Re: [O] org-store-link not working on a Gnus heading

2017-11-04 Thread Nicolas Goaziou
Hello, Narendra Joshi writes: > I get an error > `org-gnus-store-link: Invalid function: gnus-summary-article-header` > when trying to get a link to an article in Gnus. Is this a known bug? It is not a known bug, and I cannot reproduce it. BTW, I have `gnus-summary-article-header' defined. You

Re: [O] (setq org-html-with-latex nil) is ignored

2017-11-04 Thread Nicolas Goaziou
Hello, Uwe Brauer writes: > Hi I want to sent the following message > > * Matlab code > f=@(t,y)[-t*y^2]; > [t,y]=ode45(f,[0 1],1); > t=[t(1),t(end)]; > y=[y(1),y(end)]; > disp('\begin{align*}') > fprintf('t = [%g \\quad %g] \n', t) > fprintf('y = [%g \\qquad %g] \n', y) > disp('\end{alig

Re: [O] org-capture-expand-file: Invalid file location: nil

2017-11-04 Thread Nicolas Goaziou
Hello, Xi Shen writes: > When I do C-c c, I got an error: I don't see any "c" template in your `org-capture-templates'. > org-capture-expand-file: Invalid file location: nil > > But (org-capture-expand-file "") returns the expected value. And the file > does exist. But (org-capture-expand-file

Re: [O] org-submit-bug-report takes ages to format the message buffer

2017-11-04 Thread Nicolas Goaziou
Hello, Uwe Brauer writes: > Sorry I wanted to send a bug report on a different issue but it > took/takes ages to format the corresponding message buffer using > org-submit-bug-report. > > What could I do? You could provide a profiler report with both M-x profiler-start and M-x elp-instr

Re: [O] Shouldn't org-back-to-heading skip inline tasks ?

2017-11-04 Thread Nicolas Goaziou
Hello, Marc Ihm writes: > recently I have been surprised by the fact, that org-back-to-heading > (or outline-back-to-heading, for that matter) does stop at inline > tasks, > as can be tried easily with this org-snippet: > > > * foo > > *** Inline > *** END > > M-x org-bac

[O] Bizarre gnuplot file creation error

2017-11-04 Thread Lawrence Bottorff
Trying the babel gnuplot the other day, I had trouble getting the results to C-c C-c to actually materialize in the place I'd given. Taking the example from the org-mode babel gnuplot page, (changing the location): #+begin_src gnuplot :exports both :file omnigraphics/omnig10.png reset set title "

[O] Shouldn't org-back-to-heading skip inline tasks ?

2017-11-04 Thread Marc Ihm
Hi, recently I have been surprised by the fact, that org-back-to-heading (or outline-back-to-heading, for that matter) does stop at inline tasks, as can be tried easily with this org-snippet: * foo *** Inline *** END M-x org-back-to-heading In my opinion, the curso

Re: [O] using org-global-properties in capture templates

2017-11-04 Thread Xebar Saram
sorry to bother again but still stuck with this i tried to add another org-global-property entry (i assume thats possible) but then i didnt get completion for the second one. this is what i used (setq org-global-properties '(("Cuisine_ALL". "- Indian Thai Vietnamese Asian Chinese Israeli Ital

[O] org-submit-bug-report takes ages to format the message buffer

2017-11-04 Thread Uwe Brauer
Hi Sorry I wanted to send a bug report on a different issue but it took/takes ages to format the corresponding message buffer using org-submit-bug-report. What could I do? Uwe Brauer

[O] org-capture-expand-file: Invalid file location: nil

2017-11-04 Thread Xi Shen
Hi, When I do C-c c, I got an error: org-capture-expand-file: Invalid file location: nil But (org-capture-expand-file "") returns the expected value. And the file does exist. But (org-capture-expand-file nil) raise an error. So I guess the function was given an erroneous value. My relevant sett

Re: [O] [PATCH] org-capture: cannot abort cleanly after inserting at end of buffer

2017-11-04 Thread Xavier Martinez-Hidalgo
On Fri, Nov 3, 2017 at 10:22 PM, Nicolas Goaziou wrote: > Applied, with a slight twist. Thank you! It does look much cleaner using 'copy-marker'. Thanks a lot for the review! Regards, -- Xavier Martinez-Hidalgo

[O] org-store-link not working on a Gnus heading

2017-11-04 Thread Narendra Joshi
Hello, I get an error `org-gnus-store-link: Invalid function: gnus-summary-article-header` when trying to get a link to an article in Gnus. Is this a known bug? Best, Narendra -- Narendra Joshi

Re: [O] Dynamic Org-capture Templates

2017-11-04 Thread Narendra Joshi
Eric Thomas writes: > Does anyone know how to approach creating dynamic Org-capture > templates? I'm looking for IDO/Helm type of completion after a > template has been selected. If string does not exist, it is created > and added to future completions, similar to new files in emacs. > > Example: