Re: [O] Org Clock Error

2016-01-14 Thread Nick Dokos
Marco Wahl writes: > Nick Dokos writes: > >> I'm not sure what the solution is (I haven't really followed the >> upstream discussion), but I wonder if adding >> >> (defvar org-state) >> >> in org.el, just before the >> >> (defun org-todo ... >> >> line

Re: [O] Changing org-block background with org-src-fontify-natively

2016-01-14 Thread Karl Voit
* Nick Dokos wrote: > > M-x describe-face RET org-block RET With this, I see that "background" is set to the colour I want to have. However, what's the face-variable that defines the background of blocks with a specified language? Or does it interfere with my "(setq

Re: [O] Org Clock Error

2016-01-14 Thread Nick Dokos
Nick Dokos writes: > These are all guesses, untainted by actual knowledge or research. > OK - here's some actual research for a change. I was wondering what (defvar org-state) actually does, so I looked at the source code for defvar. It contains this comment: , | else

Re: [O] Footnote attributes

2016-01-14 Thread Nicolas Goaziou
Hello, Thomas S. Dye writes: > The following ECM yields a blank footnote in LaTeX export. > > ,-- > | * Footnote test > | > | This is text.[fn:1] > | > | * Footnotes > |

Re: [O] [PATCH] make options available for custom source environment in ox-latex

2016-01-14 Thread Nicolas Goaziou
Hello, Alan Schmitt writes: > Here is a small addition to the custom source environments for > ox-latex. Thank you. Some comments follow. > +(?o . > +,(let ((local-options (plist-get attributes > :options)))

Re: [O] Org Clock Error

2016-01-14 Thread Marco Wahl
Nick Dokos writes: > Mike McLean writes: > >> Hello >> >> In the last few days I started getting an error when moving tasks to the >> DONE state. >> >> I have ~(setq org-clock-out-when-done t)~ in my Emacs configuration.  >> >> I get the following back

[O] [PATCH] make options available for custom source environment in ox-latex

2016-01-14 Thread Alan Schmitt
Hello, Here is a small addition to the custom source environments for ox-latex. Alan From 8abe512966ed9a2afea91fde41081e2e5e8e5eef Mon Sep 17 00:00:00 2001 From: Alan Schmitt Date: Wed, 13 Jan 2016 16:03:40 +0100 Subject: [PATCH] ox-latex: Add option support to

Re: [O] [PATCH] make options available for custom source environment in ox-latex

2016-01-14 Thread Alan Schmitt
On 2016-01-14 11:47, Nicolas Goaziou writes: >> Here is a small addition to the custom source environments for >> ox-latex. > > Thank you. Some comments follow. > >> + (?o . >> + ,(let ((local-options (plist-get attributes

Re: [O] Footnote attributes

2016-01-14 Thread Thomas S . Dye
Aloha Nicolas, Nicolas Goaziou writes: > Hello, > > Thomas S. Dye writes: > >> The following ECM yields a blank footnote in LaTeX export. >> >> ,-- >> | * Footnote test >> | >> | This is

Re: [O] org-file using tramp + babel?

2016-01-14 Thread Charles C. Berry
On Thu, 14 Jan 2016, John Kitchin wrote: Hi, I opened an org file using tramp on a remote server. It opened fine, and I had no trouble writing text and saving it. For fun I tried running a src block (a shell block that just returned the hostname), and got this error: %s'...failed

[O] [PATCH] org-latex-compile timestamp checks

2016-01-14 Thread Anthony Cowley
I’ve had some trouble with toggling latex fragment previews in a document on OS X. It would sometimes work, sometimes not, so I could just try a few times until it worked and get on with things. Looking into it more, the problem seems to be with the HFS+ filesystem’s second granularity on file

[O] Bug: Use of Global Tag Hierarchies Breaks Agenda View [8.3.3 (8.3.3-2-g6bc48c-elpa @ ~/.emacs.d/elpa/org-20160111/)]

2016-01-14 Thread Vincent Emanuele
Hello everyone, I'm attempting to use global tag hierarchies/groups in a revamp of my org-mode setup. This seems to be breaking the default Agenda Views (Emacs goes into a race condition with 100% CPU usage and attempts to swallow up all 16GB of RAM on my machine). However, the agenda view

[O] org-file using tramp + babel?

2016-01-14 Thread John Kitchin
Hi, I opened an org file using tramp on a remote server. It opened fine, and I had no trouble writing text and saving it. For fun I tried running a src block (a shell block that just returned the hostname), and got this error: >%s'...failed tramp-file-name-handler: Couldn't write region to

Re: [O] Changing org-block background with org-src-fontify-natively

2016-01-14 Thread John Kitchin
It doesn't sounds like there is a way to do language specific colors. Karl Voit writes: > * Nick Dokos wrote: >> >> M-x describe-face RET org-block RET > > With this, I see that "background" is set to the colour I want to > have. > > However, what's the face-variable that

Re: [O] org-file using tramp + babel?

2016-01-14 Thread Martin Yrjölä
Hi John, John Kitchin writes: > Hi, I opened an org file using tramp on a remote server. It opened fine, > and I had no trouble writing text and saving it. For fun I tried running > a src block (a shell block that just returned the hostname), and got > this error: >

[O] driving me mad..oeg-agenda kills current buffer

2016-01-14 Thread Xebar Saram
Hi all so this issue is driving me mad... when im on a file, i launch org-agenda and choose an option (default view, custom view..dosent matter). this goes on to kill the buffer i launched the agenda from sometimes it just closes the buffer other times it will ask me, see from *messages* buffer:

Re: [O] Bug: C-c ' and multiple table formulas

2016-01-14 Thread Nicolas Goaziou
Hello, Nick Dokos writes: > org now supports multiple TBLFM lines - see the "Using multiple #+TBLFM > lines" subsection in > > (info "(org) Editing and debugging formulas") > > However, editing the formulas with C-c ' does not work, except for the > first one. On subsequent

[O] Vertically aligning images in tables?

2016-01-14 Thread Peter Davis
I'm trying to place three images side-by-side to they're top-aligned, but I can't see to find a way to get org-mode to do this. My current code is: + | #+MACRO: p \includegraphics[scale=.3]{$1} | #+ATTR_LATEX: :align {p{5cm} p{5cm} p{5cm}} | | {{{p(./A.png)}}} | {{{p(./B.png)}}} |