Re: [O] Financial data into an org-mode table

2017-12-13 Thread Paulo Matos
Interesting idea. Thanks for the tip! On 13/12/17 21:43, Rasmus wrote: > You could use the various R libraries and convert it to an Org table via > ob-R.el. > > #+begin_src R :colnames yes > library(quantmod) > x = getSymbols("YHOO",src="google", auto.assign=FALSE) > x[sprintf("%s/", Sys.Da

[O] bug#29694: Quoting of consts in org-agenda-custom-commands-local-options

2017-12-13 Thread Nicolas Goaziou
Hello, Glenn Morris writes: > Package: org-mode > > In code like > > (defcustom ... > :type '(const some-constant)) > > it's a mistake to write 'some-constant. > > So I'm guessing that various instances of quoted consts in > org-agenda-custom-commands-local-options are a mistake. Eg > > (const

[O] bug#29698: missing/empty custom groups

2017-12-13 Thread Nicolas Goaziou
Hello, Glenn Morris writes: > Package: org-mode > Severity: minor > > ox-publish.el defines an "org-publish" group, but nothing uses it. > > org-pcomplete.el defines an "org-complete" group, but nothing uses it. > > org-structure-template-alist uses an "org-completion" group, but > nothing defin

[O] bug#29695: Mistakes in custom :types

2017-12-13 Thread Nicolas Goaziou
Hello, Glenn Morris writes: > Package: org-mode > > The following user options have :types that do not match their defaults: > > org-babel-stan-cmdstan-directory > org-latex-default-packages-alist > org-odt-with-latex > > As a result, customizing them displays "mismatch". Fixed. Thank you. Reg

Re: [O] double underlines and external references

2017-12-13 Thread John Kitchin
I see, if it is just export you can still use a link with custom exporters for internal and external recipes. eg: [[irec: some recipe label]] might export to \uline{some recipe label} and [[erec:some other recipe]] might export to \uuline{some other recipe}, and you would use the ulem latex package

[O] bug#29698: missing/empty custom groups

2017-12-13 Thread Glenn Morris
Package: org-mode Severity: minor ox-publish.el defines an "org-publish" group, but nothing uses it. org-pcomplete.el defines an "org-complete" group, but nothing uses it. org-structure-template-alist uses an "org-completion" group, but nothing defines it.

Re: [O] Financial data into an org-mode table

2017-12-13 Thread Rasmus
You could use the various R libraries and convert it to an Org table via ob-R.el. #+begin_src R :colnames yes library(quantmod) x = getSymbols("YHOO",src="google", auto.assign=FALSE) x[sprintf("%s/", Sys.Date()-7)] #+end_src Rasmus -- Summon the Mothership!

[O] Can export the files with bibliography only to LaTeX

2017-12-13 Thread Melleus
I used to think that I can export from org to bunch of different formats. But all of a sudden when I need this feature I see that I can export only to LaTeX. But when I try exporting to other format I get Wrong type argument: stringp, nil error message. When there's no bibtex references or exp

[O] Financial data into an org-mode table

2017-12-13 Thread Paulo Matos
Hi, Is there any code out there to pull data from stock markets (using for example Google/Yahoo Finance) into an org-mode table? Kind regards, -- Paulo Matos

[O] bug#29695: Mistakes in custom :types

2017-12-13 Thread Glenn Morris
Package: org-mode The following user options have :types that do not match their defaults: org-babel-stan-cmdstan-directory org-latex-default-packages-alist org-odt-with-latex As a result, customizing them displays "mismatch".

[O] bug#29694: Quoting of consts in org-agenda-custom-commands-local-options

2017-12-13 Thread Glenn Morris
Package: org-mode In code like (defcustom ... :type '(const some-constant)) it's a mistake to write 'some-constant. So I'm guessing that various instances of quoted consts in org-agenda-custom-commands-local-options are a mistake. Eg (const :tag "scheduled" 'scheduled) etc

Re: [O] double underlines and external references

2017-12-13 Thread Sharon Kimble
John Kitchin writes: > You could just use regular links for this. You could setup a face function > that changes the color depending on it being internal or external, or you > could make separate links for them. See  > http://kitchingroup.cheme.cmu.edu/blog/2016/11/04/New-link-features-in-org-9

Re: [O] Key binding popup interface

2017-12-13 Thread Robert Weiner
On Wed, Dec 13, 2017 at 10:40 AM, Kaushal Modi wrote: > On Tue, Dec 12, 2017 at 6:51 PM Robert Weiner wrote: > >> >> ​One limitation of hydra right now is that it doesn't interface with the >> standard way of showing help for key bindings since its keys aren't >> actually bound but handled via i

Re: [O] Key binding popup interface

2017-12-13 Thread Stefan Monnier
> (defhydra hydra-zoom () > "zoom" > ("g" text-scale-increase "in") > ("l" text-scale-decrease "out")) > (global-set-key (kbd "C-c") 'hydra-zoom/body) But now this one suffers from other problems: - `C-h k` does not let me directly find the binding of `C-c g`. - A `C-c a` binding in a lower

Re: [O] Key binding popup interface

2017-12-13 Thread Kaushal Modi
On Wed, Dec 13, 2017 at 1:53 AM John Wiegley wrote: > Plus, there are other, less intrusive way to achieve "show the available > valid > key bindings", such as the which-key package. > As I mentioned in a recent response to Stefan in this thread, I did a poor job with that problem statement.. I

Re: [O] Key binding popup interface

2017-12-13 Thread Kaushal Modi
On Tue, Dec 12, 2017 at 6:51 PM Robert Weiner wrote: > > ​One limitation of hydra right now is that it doesn't interface with the > standard way of showing help for key bindings since its keys aren't > actually bound but handled via internal hydra event handling. With a bit > of thought though,

Re: [O] Key binding popup interface

2017-12-13 Thread Kaushal Modi
On Tue, Dec 12, 2017 at 4:49 PM Stefan Monnier wrote: > I tend to think of Hydra as "bindings that stick around" (to take the > wording on the first line of hydra.el), rather than "ways to show > available bindings of the current submap". So, yes, I think it does > something else (something more

Re: [O] double underlines and external references

2017-12-13 Thread John Kitchin
You could just use regular links for this. You could setup a face function that changes the color depending on it being internal or external, or you could make separate links for them. See http://kitchingroup.cheme.cmu.edu/blog/2016/11/04/New-link-features-in-org-9/ for many examples of what kinds

[O] double underlines and external references

2017-12-13 Thread Sharon Kimble
For my current series of books that I'm writing in org-mode which is being exported to latex, I need to differentiate between recipes in the current working file, and to recipes in an external file. This is in a series of books all containing recipes. So what I'm looking for is the ability to use

[O] Feature request: Add window-setup options to capture and note taking

2017-12-13 Thread Daniel Kraus
Hi, I don't like that org fiddles with my window setup, even if it's only temporary. I can set `org-agenda-window-setup` and `org-src-window-setup` to change the behavior for the babel and agenda window but for other functions it seems to be hard coded. I would be interested especialy in the not

Re: [O] Lists with bullets and checkboxes in beamer

2017-12-13 Thread Eric S Fraga
On Tuesday, 12 Dec 2017 at 17:24, Ken Mankoff wrote: > Hi List, > > I have some lists with checkboxes like this: > > + [X] Foo > + [ ] Bar > > > When I export these to Beamer, I get both a bullet and a [] box. The > bullet is redundant and adds noise to the slide. Is there a way to not > have the b

Re: [O] Is it possible to pass variable to variables of src block?

2017-12-13 Thread Michael Welle
Hello, Xi Shen writes: > Hi Michael, > > Yes, I think this is a way to my previous question. But what I really want > to achieve is to loop through a list of server names and execute a script > on them. > > Say I have 20 different database server. How can I do a loop with each > server? interest