Re: [O] Problem with links whose description looks like a link

2014-11-20 Thread Daniel Bausch
Nicolas Goaziou writes: > Daniel Bausch writes: > >> Hmm, ok, I understand the intention regarding the detection and display >> of inline images as part of a link description; however, even for inline >> images following the link jumps to the target of the outer link and not >> the image itself

Re: [O] SQL support in Babel

2014-11-20 Thread Nick Dokos
Seb writes: > Hi, > > The last code block in ob-doc-sql¹ suggests I should be able to place a > number of #+HEADER lines above my SQL source code to specify the > connection string. I am trying to connect to a remote PostgreSQL > server, and after lots of experimentation, the only way this works

[O] Bernt Hansen's

2014-11-20 Thread rene
Nick Dokos gmail.com> writes: > > Gary Oberbrunner oberbrunner.com> writes: > > > Thomas S. Dye tsdye.com> wrote: > > > > > One solution is to use a capture template for TODO items and then > > > refile them.  I picked this up from Bernt Hansen and like it a lot: > > > http://doc.norang.

Re: [O] Support for "parts"

2014-11-20 Thread Nick Dokos
Marcin Borkowski writes: > Hi there, > > just wondering: in LaTeX, there is a concept of a "part", which is above > "chapter" in the hierarchy. Is there any way to do something similar in > Org? To be more precise: I'd want something like this: > > \chapter{Introduction} > > \part{For beginners

Re: [O] Problem with links whose description looks like a link

2014-11-20 Thread Nicolas Goaziou
Daniel Bausch writes: > Hmm, ok, I understand the intention regarding the detection and display > of inline images as part of a link description; however, even for inline > images following the link jumps to the target of the outer link and not > the image itself -- as long as inline images are t

[O] Support for "parts"

2014-11-20 Thread Marcin Borkowski
Hi there, just wondering: in LaTeX, there is a concept of a "part", which is above "chapter" in the hierarchy. Is there any way to do something similar in Org? To be more precise: I'd want something like this: \chapter{Introduction} \part{For beginners} \chapter{One} \chapter{Two} \part{For

Re: [O] clock gone error, fixing it issues, and K does not clock out

2014-11-20 Thread Samuel Wales
On 11/20/14, Eric S Fraga wrote: > How are you installing the maint version of org? Elpa? git maint. i think the clock start time is gone bug is known, but it happens even when i don't make any changes that could change clocking marks. perhaps it gets triggered by magit revert, but even there i

[O] Bug: [Capture] wrongly duplicated date tree outlines [8.2.10]

2014-11-20 Thread kuanyui
I want to have a `file+datetree` for Org-mode's Capture, so I set like this: (setq org-capture-templates '(("D" "Diary + Timer" entry (file+datetree (concat org-directory "/diary/diary.org")) "* %^{Description: } %^g \n %i %?\n" :clock-in t :clock-keep t)

[O] Org-Oddmuse?

2014-11-20 Thread Marcin Borkowski
Hi list, I found this: http://www.emacswiki.org/OrgOddmuse, but it seems not to work with current Org (Org-mode version 8.2.5f (8.2.5f-elpa @ /home/marcin/.emacs.d/elpa/org-20140116/)). My suspicion is that it was not updated to the "new" exporter. Am I right? Are there any options to export fr

[O] SQL support in Babel

2014-11-20 Thread Seb
Hi, The last code block in ob-doc-sql¹ suggests I should be able to place a number of #+HEADER lines above my SQL source code to specify the connection string. I am trying to connect to a remote PostgreSQL server, and after lots of experimentation, the only way this works for me is to have a sing

Re: [O] Orgmode links trouble with Emacs 24.4 on Windows 7: "ShellExecute failed: ..."

2014-11-20 Thread AW
As this does not seem to be an orgmode, but an emacs on windows issue, I'll ask on the emacs list, so beware: crossposting. Am Mittwoch, 19. November 2014, 16:25:18 schrieb AW: > Am Dienstag, 18. November 2014, 22:36:46 schrieb Nicolas Goaziou: > > Hello, > > > > AW writes: > > > I installed Em

Re: [O] Could org-mode implement multiple rows in tables?

2014-11-20 Thread Rasmus
Rasmus writes: >> Perhaps, this could be feasible now? > > Of course it would be feasible, but it would probably require *a lot* of > work, and you haven't argued why this is compelling. How would I even specify "a" as a multirow in the following matrix? Maybe some signal could be used like <⋯>

Re: [O] Could org-mode implement multiple rows in tables?

2014-11-20 Thread Rasmus
Hi Ma, Ma Jiehong writes: > But what about having some cells spanning through more than 1 row > (that is to say, vertically)? Just to understand, you are asking for something like this: | | b | | a |---| | | c | It's not supported ATM. You could probably make an export filter to get it

Re: [O] How to trigger the clockcheck in an agenda view.

2014-11-20 Thread Rainer Stengele
Am 27.09.2013 um 15:00 schrieb Carsten Dominik: > > On 10.9.2013, at 17:07, Nicolas Girard wrote: > >> 2013/8/5 Sebastien Vauban : >>> >>> Except the above, I definitely don't understand why it wouldn't work for >>> you. >>> Can you reproduce the problem with a minimal Emacs config file (adding

[O] calendar (backwards-)integration

2014-11-20 Thread Joe Corneli
The Org Mode docs [1] say: | In order to include entries from the Emacs diary into Org mode's | agenda, you only need to customize the variable | | (setq org-agenda-include-diary t) Is there any way to include data in the other direction, so that scheduled events are marked in the calendar?

Re: [O] clock gone error, fixing it issues, and K does not clock out

2014-11-20 Thread Eric S Fraga
On Wednesday, 19 Nov 2014 at 17:42, Samuel Wales wrote: > On 11/19/14, Eric S Fraga wrote: >> Maybe just you? What version of org are you using? How are you >> clocking out? > > maint. c-c c-x c-o. How are you installing the maint version of org? Elpa? Maybe have a look at some of the org-cl

[O] heads up: problems with getting X secondary selection in recent Emacs

2014-11-20 Thread Eric S Fraga
Hello, there appear to be some problems with recent development/snapshot versions of emacs with respect to getting the X selections. Org uses these automatically within org-capture and, at best, causes long delays in capturing anything and, at worst, doesn't work at all. I have found that lettin

Re: [O] babel, header arguments.

2014-11-20 Thread Sebastien Vauban
jenia.ivlev wrote: > So lets say there's this function: > > #+name: my-plus > #+begin_src scheme > (define my-plus > (lambda (x y) (+ x y))) > #+end_src > > And i want to call it from another source block, like so: > > #+tblname: addition > | sum| > |--

Re: [O] How to get "remember" working properly?

2014-11-20 Thread Sharon Kimble
Nick Dokos writes: > Sharon Kimble writes: > >> ... >> >> However, org-capture is working well, prefacing my "timelog.org"" >> with CAPTURE- in front, like "CAPTURE-timelog.org". Maybe then it is >> time to retire "remember" as "org-capture" seems to have taken over? >> But that's for another po