[O] preparing a R course in org for slides..can i link back to org document?

2015-10-19 Thread Xebar Saram
Hi all I am building an introduction to R course using org (and now org-reveal!). in some slide i show code blocks and would like to show the students the actual run of the code. I was wondering if anyone knew if there is a way to press a link in my reveal slide show that would take me to the

Re: [O] Using constants in columns

2015-10-19 Thread Eric S Fraga
On Saturday, 17 Oct 2015 at 22:27, Guido Van Hoecke wrote: [...] > I really should study the calc manual ;) The last time I delved into the calc manual, I didn't resurface for three days ;-) -- : Eric S Fraga (0xFFFCF67D), Emacs 24.5.1, Org release_8.3.2-164-g50a182

Re: [O] A recent mobile org change causing sync issues

2015-10-19 Thread Nicolas Goaziou
Hello, Steve Harman writes: > I believe a recent change in org-mobile.el is causing a sync problem on the > Android app. There is some info here: > https://github.com/matburt/mobileorg-android/issues/472 > > The info for the commit is at the bottom. Thank you for the

[O] Off line until Sunday 25

2015-10-19 Thread Nicolas Goaziou
Happy Org'ing.

Re: [O] Using constants in columns

2015-10-19 Thread Guido Van Hoecke
On 19 October 2015 at 08:12, Eric S Fraga wrote: > On Saturday, 17 Oct 2015 at 22:27, Guido Van Hoecke wrote: > > [...] > > > I really should study the calc manual ;) > > The last time I delved into the calc manual, I didn't resurface for > three days ;-) ​:- ​)​

Re: [O] function to cycle through specific org files?

2015-10-19 Thread John Kitchin
this feels kind of hacky, but it seems to do what you want: (setq my-files '("a.org" "b.org" "c.org")) (defun my-next-file () (interactive) (let ((f (pop my-files))) (add-to-list 'my-files f t) (find-file f))) (defun my-previous-file () (interactive) (let* ((r-my-files (reverse

Re: [O] function to cycle through specific org files?

2015-10-19 Thread Kaushal Modi
In the event those org files are part of your org agenda, there is an inbuilt command to do that: org-cycle-agenda-files C-' (org-cycle-agenda-files) C-,Cycle through agenda file list, visiting one file after the other. http://orgmode.org/manual/Agenda-files.html On Oct 19, 2015 7:06 AM,

Re: [O] preparing a R course in org for slides..can i link back to org document?

2015-10-19 Thread Eric S Fraga
On Monday, 19 Oct 2015 at 11:05, Xebar Saram wrote: > Also if people are using other alternative to org-reveal that can do that i > also wouldnt mind to try it out (a long as its as simple as org-revel :-)) You might want to try org-treeslide [1]. List of alternatives can be found on Worg [2].

Re: [O] a more inteligant way of signaling the exporter to start a new line than "\\"?

2015-10-19 Thread Xebar Saram
Thanks so much Eric that helped me alot :) appreciate it Z On Mon, Oct 19, 2015 at 4:34 PM, Eric S Fraga wrote: > On Monday, 19 Oct 2015 at 16:10, Xebar Saram wrote: > > Hi > > > > This maybe a really stupid neewb question, but when im writing my slides > > and course

[O] a more inteligant way of signaling the exporter to start a new line than "\\"?

2015-10-19 Thread Xebar Saram
Hi This maybe a really stupid neewb question, but when im writing my slides and course homework in org and export to reveal html, pdf etc i always get all lines stitched together and the only way i managed to get over this is use a "\\" sign at the end of EACH line. this is really cumbersome. I

Re: [O] a more inteligant way of signaling the exporter to start a new line than "\\"?

2015-10-19 Thread Eric S Fraga
On Monday, 19 Oct 2015 at 16:10, Xebar Saram wrote: > Hi > > This maybe a really stupid neewb question, but when im writing my slides > and course homework in org and export to reveal html, pdf etc i always get > all lines stitched together and the only way i managed to get over this is > use a

Re: [O] a more inteligant way of signaling the exporter to start a new line than "\\"?

2015-10-19 Thread Eric S Fraga
On Monday, 19 Oct 2015 at 17:05, Xebar Saram wrote: > Thanks so much Eric > > that helped me alot :) Glad I could help. I had meant to add that what you probably wanted, in any case, was to use lists if the text was intended for slides, as in: #+begin_src org ,*** Basic data types in R -

Re: [O] A recent mobile org change causing sync issues

2015-10-19 Thread Steve Harman
Thanks Nicolas, I am not able to post the diff due to the personal nature of the data. However, I can say that with the commit, the tags in the #+TAGS line is missing. Also, a link to one of the org files is missing. Would it be possible to revert this change? This is such a critical bug and it

[O] BUG in org-lint and tangle

2015-10-19 Thread Rainer M Krug
The following R file causes an crash of the org-lint function and of tangling - backtrace attached. The problem seems to be the missing specification of :exports. --8<---cut here---start->8--- * Test #+begin_src R :exports #+end_src --8<---cut

[O] Show first leaf heading on startup

2015-10-19 Thread Shankar Rao
If I have the following org document: * Heading A ** Subheading AA *** Subsubheading AAA Stuff about topic AAA *** Subsubheading AAB Stuff about topic AAB ** Subheading AB *** Subheading ABA Stuff about topic ABA *** Subheading ABB Stuff about topic ABB * Heading B ** Subheading BA *** Subheading

[O] Links in comments

2015-10-19 Thread Kaushal Modi
Hi, This question has come up a few times on emacs.stackexchange so I was curious if the more experienced org-mode users had a solution to this.. or if a fix is needed to resolve this issue. Referenced emacs.stackexchange questions: - http://emacs.stackexchange.com/q/17505/115 -

Re: [O] Return Top-Level Heading

2015-10-19 Thread Myles English
Hello Zach, Zach Sheffler writes: > Is there a way to reference the top-level heading that a lower-level > heading belongs to? For instance: > > * One > ** Two > *** Three > > If I have "Three", how can I get it to tell me that the top-level is "One"? > For reference, this is for an

Re: [O] a more inteligant way of signaling the exporter to start a new line than "\\"?

2015-10-19 Thread Eric Abrahamsen
Xebar Saram writes: > Thanks so much Eric > > that helped me alot :) > > appreciate it And, if the time ever comes that you really do want to preserve line breaks for some reason, you can set the org-export-preserve-breaks variable to t, or use the \n:nil OPTIONS line. > > Z