Re: [O] anyone syncing orgmode calendar with google cal, and if so how?

2015-10-05 Thread Rainer M Krug
Eric S Fraga writes: > On Monday, 5 Oct 2015 at 09:46, Xebar Saram wrote: >> Hi all >> >> i was wondering if anyone was syncing orgmode calendar with google cal, and >> if so how? i tried this > > I sync org with Google's calendar using MobileOrg on my phone as the >

Re: [O] Bug? Improper interaction with python variable _ ?

2015-10-05 Thread Brian Beckman
Correction: The first elisp-block should contain another command Here is the corrected org-mode file, top-to-bottom #+TITLE: Org-Babel Bug? #+AUTHOR: Brian Beckman #+EMAIL: bc.beck...@gmail.com #+BEGIN_SRC emacs-lisp :exports results :results none (org-babel-do-load-languages

[O] Bug? Improper interaction with python variable _ ?

2015-10-05 Thread Brian Beckman
Please see the gist below for a self-explaining example copied here for convenience. Emacs 24.5.1 with org-mode 8 something (not sure how to get it to report its exact version)... a very late version, I am sure. Verified with no init.el, that is, with emacs -Q

Re: [O] anyone syncing orgmode calendar with google cal, and if so how?

2015-10-05 Thread Fabrice Popineau
I have build a merge of elisp code from 2 people (org-gcal and google-calendar) and enhanced it a little bit. I can sync both ways from Emacs. The code is ugly, so I won't publish it. But if anybody wants to clean it up and make it more solid, I'll send it. Fabrice 2015-10-05 19:45 GMT+02:00

Re: [O] babel srcname? Calling Library of Babel code?

2015-10-05 Thread Thomas S . Dye
Aloha Lawrence, Lawrence Bottorff writes: > Not really getting how to call code "meta-style" from other points -- in my > file, in other files, in my "library of babel" file? I've tracked down bits > and pieces here and there, but I'm missing the big picture. > > For example,

Re: [O] anyone syncing orgmode calendar with google cal, and if so how?

2015-10-05 Thread James Richardson
Fabrice Popineau writes: > I have build a merge of elisp code from 2 people (org-gcal and > google-calendar) and enhanced it a little bit. > I can sync both ways from Emacs. > The code is ugly, so I won't publish it. But if anybody wants to clean it > up and make it more solid, I'll send it. >

[O] how can I use a fixed-pitch face for source blocks?

2015-10-05 Thread Alan Schmitt
Hello, I use a variable-pitch face for my org-mode buffers, with the exception of some elements (table, dates, verbatim, …). I would like to include source blocks as well, but since org-block-background has been removed, there does not seem to be a way to disable variable-pitch in source blocks.

[O] anyone syncing orgmode calendar with google cal, and if so how?

2015-10-05 Thread Xebar Saram
Hi all i was wondering if anyone was syncing orgmode calendar with google cal, and if so how? i tried this https://github.com/myuhe/org-gcal.el/issues which gave errors all the time and thus stopped being usable im looking for a robust solution. any ideas? best Z

[O] bug#21344: 25.0.50; ORG (melpa unstable): when export to html #+BEGIN_CENTER blocks don't work

2015-10-05 Thread Bastien
j_l_domen...@yahoo.com writes: > In latest ORG from melpa unstable, when exporting to HTML, the > #+BEGIN_CENTER > blocks doesn't work as expected. > > It seems to be an incorrect class name in the div's block that is > generated. Closing this as it has been fixed upstream. Thanks, --

Re: [O] Repeating timestamp with interval N times

2015-10-05 Thread Stephen Eglen
hi Rasmus, thanks! > In the past I used org-class, which might be what you refer to below. > Example: > > %%(org-class 2014 9 26 2014 12 15 3 'holidays) office hour 9:30-10:30 Thank you, I had not seen that. > > My understanding is that you would like to extend Org’s "datey" syntax to >

Re: [O] :EXPORT tags in property drawer not recognised in org 8.3

2015-10-05 Thread Zhihao Ding
Thanks Rasmus. After some exploration I realised that I can't have empty lines or comment lines (by #) between :PROPERTIES: and :END: - I used to have blocks of :EXPORT_ for different things. Once I remove those I get the right export as before. This is fixed for me now. Thanks, Zhihao On 29

Re: [O] [PATCH] Reverse capture finalize and refile, hack buffer killing.

2015-10-05 Thread Jan Seeger
Hello! That might be because I copy-pasted the patch into an email. Sorry for the delay! I attached the patch. Regards, Jan diff --git a/lisp/org-capture.el b/lisp/org-capture.el index 67dc319..b1cda3d 100644 --- a/lisp/org-capture.el +++ b/lisp/org-capture.el @@ -792,7 +792,10 @@ already

Re: [O] Repeating timestamp with interval N times

2015-10-05 Thread Rasmus
Hi Stephen, Stephen Eglen writes: >> My understanding is that you would like to extend Org’s "datey" syntax to >> allow provide an end in this statement, >> >> <2015-10-08 Thu 11:00-12:00 8+1w> >> >> What is the syntax you have got in mind? > > I wrote a suggestion above,

[O] Org-mode Babel does not show syntax highlight when open with another mode

2015-10-05 Thread stardiviner
I try to configure Org-mode to open ruby source code block with `enh-ruby-mode`. configuration as following: #+BEGIN_SRC emacs-lisp (with-eval-after-load 'enh-ruby-mode (add-to-list 'org-src-lang-modes '("ruby" . enh-ruby))) #+END_SRC This will open code block in `enh-ruby-mode` when you

[O] Org-mode Babel does not show syntax highlight when open with another mode

2015-10-05 Thread stardiviner
I try to configure Org-mode to open ruby source code block with `enh-ruby-mode`. configuration as following: #+BEGIN_SRC emacs-lisp (with-eval-after-load 'enh-ruby-mode (add-to-list 'org-src-lang-modes '("ruby" . enh-ruby))) #+END_SRC This will open code block in `enh-ruby-mode` when you

[O] Website down?

2015-10-05 Thread Puneeth Chaganti

Re: [O] Website down?

2015-10-05 Thread Kaushal Modi
Yes, it's down for me since morning. -- Kaushal Modi On Mon, Oct 5, 2015 at 10:40 PM, Puneeth Chaganti wrote: > > >

Re: [O] Website down?

2015-10-05 Thread Bastien
Kaushal Modi writes: > Yes, it's down for me since morning. It's now back up. I just restarted the nginx process. I've setup a regular check to avoid this in the future. Thanks for reporting it! -- Bastien

[O] babel srcname? Calling Library of Babel code?

2015-10-05 Thread Lawrence Bottorff
Not really getting how to call code "meta-style" from other points -- in my file, in other files, in my "library of babel" file? I've tracked down bits and pieces here and there, but I'm missing the big picture. For example, this: #+srcname: python2_env #+begin_src emacs-lisp (setq

[O] To compile or not compile - that is the question

2015-10-05 Thread Rainer M Krug
Hi I compiled org before, but would now prefer to use it uncompiled (different emacs versions, debugging). What are the speed implications of not compiling orgmode? I am using tangling a lot - would not be compiling a recognizable slowdown? Thanks, Rainer -- Rainer M. Krug, PhD (Conservation

Re: [O] anyone syncing orgmode calendar with google cal, and if so how?

2015-10-05 Thread Jorge A. Alfaro-Murillo
Xebar Saram writes: i was wondering if anyone was syncing orgmode calendar with google cal, and if so how? i tried this https://github.com/myuhe/org-gcal.el/issues which gave errors all the time and thus stopped being usable im looking for a robust solution. any ideas? I export the

Re: [O] anyone syncing orgmode calendar with google cal, and if so how?

2015-10-05 Thread Eric S Fraga
On Monday, 5 Oct 2015 at 09:46, Xebar Saram wrote: > Hi all > > i was wondering if anyone was syncing orgmode calendar with google cal, and > if so how? i tried this I sync org with Google's calendar using MobileOrg on my phone as the intermediary. Generally works quite well. I would be using