Re: [O] More clocktable breakage

2017-03-29 Thread Nicolas Goaziou
Hello, Achim Gratz writes: > I've just noticed that in my the clocktables at work I can't adjust the > start and end ranges anymore with up/down. Apparently the timestamps > are not recognized anymore and the it falls through to some code that > tries to adjust the :block

Re: [O] Tangling with cross-references coming from included files

2017-03-29 Thread Nicolas Goaziou
Hello, "s...@1042.ch" writes: > I am trying to achieve the tangling of an org-file which is composed by > multiple (included) org-files. > > I am using Emacs 25.1.1 and Org mode 9.0.5. > > Here an example of what I am trying to achieve. > > ——Example starts here—— >

Re: [O] evil-mode and org

2017-03-29 Thread John Kitchin
Using evil-mode is not "using vim" IMHO. I think this is a question of do you want modal editing or not (I suppose it could also be do you want emacs-lisp or vimscript, but that is not the impression I get these days ;). With emacs you can have either traditional emacs editing (one-mode: edit) or

[O] How can footnotes be exported at the end of an artile in latex?

2017-03-29 Thread mgcyung
Is it possible to export to latex with all footnotes at the end of an artile but not at the bottom of the page with the reference? -- With best wishes, mgcyung

Re: [O] can I export all PROPERTIES to my ascii output?

2017-03-29 Thread Christopher W. Ryan
Thank Nicolas, but what exactly do you mean by "see" org-export-properties? I use org-mode a little, but I have to admit I have never really looked under the hood and played around with variables much. --Chris Nicolas Goaziou wrote: > Hello, > > Christopher W Ryan

Re: [O] [PATCH] Allow insertion of links with multi-line search strings

2017-03-29 Thread Nicolas Goaziou
Hello, Matt Lundin writes: > From 726eba76f31537747a26a7689ee632ec8e9bc01f Mon Sep 17 00:00:00 2001 > From: Matt Lundin > Date: Mon, 27 Mar 2017 09:55:33 -0500 > Subject: [PATCH] Allow insertion of links with multi-line search strings > > * lisp/org.el:

Re: [O] Bug: Updating clocktable hides other content [9.0.5 (9.0.5-elpa @ /home/christof/.emacs.d/elpa/org-20170210/)]

2017-03-29 Thread Nicolas Goaziou
Hello, Christof Musik writes: > I have noticed some problems on updating a clocktable in a dynamic block. > If you update this table with org-dblock-update, then all content besides > that table > is hidden. I have not found a way to show it again without opening the

Re: [O] Have SRC_BLOCK :padline accept numbers

2017-03-29 Thread Daniel P Gomez
Dear Nicolas, Thanks for the constructive feedback. I've amended the commit including the changes you've mentioned. I did not change the following, though: (numberp (string-to-int padlines)) -> (string-match-p "\\`[0-9]+\\'" padlines) because that changed the behaviour of org-babel-tangle.

Re: [O] How can footnotes be exported at the end of an artile in latex?

2017-03-29 Thread Nick Dokos
mgcyung writes: > Is it possible to export to latex with all footnotes at the end of an artile > but > not at the bottom of the page with the reference? > They are then called "endnotes". You might want to google for that. And it might be as simple as #+LATEX_HEADER:

Re: [O] [BUG] org-link-search fails if search string contains new lines

2017-03-29 Thread Skip Collins
Test test-org/fuzzy-links backtrace: (if (unwind-protect (setq value-10839 (let ((file (make-temp-file "o (let (form-description-10840) (if (unwind-protect (setq value-10839 (let ((value-10839 (cl-gensym "ert-form-evaluation-aborted-"))) (let (lambda nil (let ((value-10802 (cl-gensym

[O] ox-man line break

2017-03-29 Thread Francesco Montanari
Hi, When converting ORG to MAN pages (org-man-export-to-man), a new line should be added before the line break `.br' tag. Otherwise, for example, the following: ``` hello\\ word ``` is converted to: ``` hello.br word ``` Patch attached. Thanks, Francesco >From

Re: [O] [PATCH] allow klipse export in html

2017-03-29 Thread Yehonathan Sharvit
Good news. Where is the commit? On Fri, Mar 24, 2017, 14:15 Matt Price wrote: > Yay! Thank you! > > On Mar 23, 2017 6:25 PM, "Bastien Guerry" wrote: > > Hi Matt, > > I finally committed this. Sorry it took so long and thanks > again for the patch! > > Best, >

[O] Bug: org-goto not work with ido completion [9.0.5 (9.0.5-elpa @ /Users/lluvio/.emacs.d/elpa/org-20170210/)]

2017-03-29 Thread Mr Lluvio
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org mailing list.

[O] Bug: startup latexpreview [9.0.5 (9.0.5-elpa @ /gnu/store/...-emacs-org-20170210/share/emacs/site-lisp/guix.d/org-20170210/)]

2017-03-29 Thread Diego Nicola Barbato
Hello, When opening an org-file in emacs which contains the in-buffer setting "#+STARTUP: latexpreview" the minibuffer displays "Creating images for section...done" instead of "Creating images for buffer...done" and the LaTeX fragments in the buffer are not converted to images. However, if

Re: [O] tsia-up sorting strategy sorts agenda by date and ignores time. How can I change that?

2017-03-29 Thread Arkady Grudzinsky
On Wed, Mar 22 2017, Arkady Grudzinsky wrote: > On Tue, Mar 21 2017, Matt Lundin wrote: > >> You could use something like this and then add user-defined-up or >> user-defined-down where desired in org-agenda-sorting-strategy: >> >> (defun my-sort-by-inactive-timestamp-incl-time (a b) >> (let*

[O] filtering agenda mode based on time of day ?

2017-03-29 Thread Max Rydahl Andersen
Hi, Anyone got a working setup of doing something like this: From 8-17 local time, show everything in agenda EXCEPT things with tag :home: From 17-8, show everything in agenda (and optimally make anything not tagged home show up last) ? This is so I don't bogged down with home task while

[O] [PATCH] ob-sql: Add vertica engine

2017-03-29 Thread Andreas Gerler
* lisp/ob-sql.el (org-babel-sql-dbstring-vertica): New function. (org-babel-execute:sql): Add `vertica' engine. Signed-off-by: Andreas Gerler --- lisp/ob-sql.el | 20 +++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/lisp/ob-sql.el

[O] Evaluating C code block on remote host

2017-03-29 Thread Иван Трусков
I am working on windows machine. I have last org version (from february 2017). I have a remote host accessible by putty, where i have created org file of the following contents: #+TITLE C language things * Simple hello-world program #+NAME hello world on C #+BEGIN_SRC C :dir

Re: [O] evil-mode and org

2017-03-29 Thread Peter Neilson
On Wed, 29 Mar 2017 11:12:22 -0400, John Kitchin wrote: Using evil-mode is not "using vim" IMHO. I think this is a question of do you want modal editing or not (I suppose it could also be do you want emacs-lisp or vimscript, but that is not the impression I get these

[O] Logging evaluation of the source block

2017-03-29 Thread Иван Трусков
Is there a way to log actions that org undertakes in process of evaluation of the code block? Preferably in such a way that all commands executed will be visible. Reason: i am suspecting org is not trying to evaluate source block on remote machine, but i need data to substantiate that claim

[O] Bug: startup latexpreview [9.0.5 (9.0.5-elpa @ /gnu/store/...-emacs-org-20170210/share/emacs/site-lisp/guix.d/org-20170210/)]

2017-03-29 Thread Diego Nicola Barbato
Hello, When opening an org-file in emacs which contains the in-buffer setting "#+STARTUP: latexpreview" the minibuffer displays "Creating images for section...done" instead of "Creating images for buffer...done" and the LaTeX fragments in the buffer are not converted to images. However, if

[O] org-caldav issue (wrong-type-argument stringp nil)

2017-03-29 Thread Bertrand SIMON
I use the ELPA version of the package with emacs 25 and nextcloud. When I Launch the sync. I get the lisp message: `(wrong-type-argument stringp nil)` I have to mention that I have already modified the org-caldav.el file according to this message:

Re: [O] can I export all PROPERTIES to my ascii output?

2017-03-29 Thread Nicolas Goaziou
"Christopher W. Ryan" writes: > Thank Nicolas, but what exactly do you mean by "see" > org-export-properties? I use org-mode a little, but I have to admit I > have never really looked under the hood and played around with variables > much. I mean: please have a look at

Re: [O] [PATCH] allow klipse export in html

2017-03-29 Thread Kaushal Modi
On Wed, Mar 29, 2017 at 3:18 PM Yehonathan Sharvit wrote: > Good news. Where is the commit? It's in the master branch: http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=d5bbf365533ba45d72ebed8121c7612c860ea944 -- Kaushal Modi

Re: [O] evil-mode and org

2017-03-29 Thread John Hendy
On Wed, Mar 29, 2017 at 10:12 AM, John Kitchin wrote: > Using evil-mode is not "using vim" IMHO. I think this is a question of > do you want modal editing or not (I suppose it could also be do you want > emacs-lisp or vimscript, but that is not the impression I get these

Re: [O] evil-mode and org

2017-03-29 Thread John Hendy
On Tue, Mar 28, 2017 at 8:23 AM, Peter Neilson wrote: > On Tue, 28 Mar 2017 08:57:40 -0400, Matt Price wrote: > >> I've never used Vim but I see a lot of people online raving about evil >> mode >> and how much they love it. I'm considering giving it a

Re: [O] [BUG] org-link-search fails if search string contains new lines

2017-03-29 Thread Nicolas Goaziou
Hello, Skip Collins writes: > 1 unexpected results: > >FAILED test-org/fuzzy-links This is not the case at http://www.randomsample.de:4457/waterfall The error report would help. Regards, -- Nicolas Goaziou

Re: [O] can I export all PROPERTIES to my ascii output?

2017-03-29 Thread Nicolas Goaziou
Hello, Christopher W Ryan writes: > I'd like to make all the PROPERTIES show up in ascii output when I export. > How can I do that? > > #+OPTIONS: properties:t > > does not export properties. Neither does: > > #+OPTIONS: with-properties:t See

Re: [O] [BUG] org-link-search fails if search string contains new lines

2017-03-29 Thread Nicolas Goaziou
Hello, Matt Lundin writes: > Thanks Nicolas. Yes, it now works with multi-line searches that do not > contain blank lines. > > I think there are some instances in which one might want to search > across blank lines, such as when one captures a region that contains one > or

Re: [O] Have SRC_BLOCK :padline accept numbers

2017-03-29 Thread Nicolas Goaziou
Hello, Daniel P Gomez writes: > I've written a small patch (attached here), following the contribution > guidelines on the org-mode website. The "patched" repository can be found > here: https://github.com/dangom/org-mode/tree/feature_padline Thank you. > Please let me