Re: [O] another example of org being slow, with some analysis

2015-06-21 Thread Daniel Bausch
Eric S Fraga writes: > On Friday, 19 Jun 2015 at 10:28, Daniel Bausch wrote: > > [...] > >> If anyone could give me a hint how to reliably set the preferred (or >> internal) encoding I could check wether it might have something to do >> with the system locale. > > I have (only) the following enco

[O] Tangling #+Results block?

2015-06-21 Thread Joon Ro
Is it possible to tangle #+RESULTS: block? For example, #+BEGIN_SRC rst :tangle ./test.txt :noweb yes<>#+END_SRC #+BEGIN_SRC python :exports results :results output rawprint("Printed Results")#+END_SRC #+RESULTS: Printed Results And I want to tangle #+RESULTS: part, not the actual Python source co

Re: [O] Filters lost after reviving buried, sticky agenda

2015-06-21 Thread Daimrod
Daniel Borchmann writes: > ghItlhpu' Daimrod : >>> My question is now: is this correct, or did I understand something >>> wrong? If my understanding is correct, how this bug be fixed more >>> elegantly? >> >> It doesn't work at startup when agenda hasn't been built yet. The >> following patch do

[O] [PATCH] org-clone-subtree-with-time-shift: Accept 0 clones

2015-06-21 Thread Kyle Meyer
Hello, I'd like to clone a subtree with a repeating timestamp so that the repeater is removed from the original subtree and a single shifted and repeating clone is created. I don't think this is currently possible with org-clone-subtree-with-time-shift. For example, running org-clone-subtree-wit

Re: [O] helm-bibtex questions

2015-06-21 Thread John Kitchin
sweet! I did not know you could do that! I will be refactoring org-ref soon to do that instead of redefining the commands! John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-

Re: [O] helm-bibtex questions

2015-06-21 Thread Titus von der Malsburg
On 2015-06-19 Fri 03:56, Xebar Saram wrote: > Hi again Titus > > 2 quick questions that arose from using helm-bitex today extensively: > > how does one exclude in the search items? for example i want to search for > xebar without keyword "progress" (I want to exclude in progress articles > not pub

Re: [O] sip: links

2015-06-21 Thread Christian Thaeter
On 2015-06-21 12:37, Michael Strey wrote: > Hi Christian, > > On Sa, 2015-06-20, Christian Thaeter wrote: > > > anyone of you happen to have a url handler for 'sip:' links > > invoking a telephony app (eg. linphone) when clicked? > > The attached org-dial.el provides support for a link type `te

Re: [O] [PATCH] org-contacts.el: Catch 'nextfile in org-contacts-db

2015-06-21 Thread Daimrod
Philippe Crama writes: > Hi, Hello Philippe, > This is a small patch to catch the 'nextfile thrown by > `org-check-agenda-file' in `org-contacts-db'. > > I don't know how to fix the TODO in the comment myself, sorry. At > least, with the patch, the execution doesn't abort anymore. Thanks for

Re: [O] including svg files in odt exports?

2015-06-21 Thread joakim
Nicolas Goaziou writes: > Hello, > > joa...@verona.se writes: > >> Adding svg to the org-odt-inline-image-rules regexp works. Could this be >> included in org? > > This is already the case in master. Default value is Okay, good! Obviously I should switch to master then :) > > '(("file" . "\\.

Re: [O] Filters lost after reviving buried, sticky agenda

2015-06-21 Thread Daimrod
Daniel Borchmann writes: > Dear all, > > I regularly lose all my filters when I bury a sticky agenda and revive > it later. In that case, the variable `org-agenda-tag-filter' is set to > nil, although it was non-nil before burying. > > I played around a bit, and found out that `org-agenda-tag-fi

Re: [O] Is it possible to embed tag search as a link?

2015-06-21 Thread Jay Dresser
You could always do it with elisp, perhaps: [[elisp:(org-tags-view nil "+work-boss-TODO=\"DONE\"")]] which would be like "C-c a m" Or: [[elisp:(org-match-sparse-tree nil "+work-boss-TODO=\"DONE\"")]] which would be like "C-c \". Change "nil" to "t" for TODO only. Piotr Isajew writes:

Re: [O] Order of TODO entries by `org-sort-entries' [8.2.10 (release_8.2.10 @ /usr/share/emacs/24.4/lisp/org/)]

2015-06-21 Thread Kyle Meyer
Hi, Simen Heggestøyl wrote: > Hi! > > Consider the following outline tree: > > * Tasks > ** TODO [#B] B > ** DONE C > ** TODO [#A] A > > When calling `org-sort-entries' on the top level headline, and > selecting `o' to sort by TODO order, the order becomes the following: > B, A, C. However, I wou

Re: [O] including svg files in odt exports?

2015-06-21 Thread Nicolas Goaziou
Hello, joa...@verona.se writes: > Adding svg to the org-odt-inline-image-rules regexp works. Could this be > included in org? This is already the case in master. Default value is '(("file" . "\\.\\(jpeg\\|jpg\\|png\\|gif\\|svg\\)\\'")) Regards, -- Nicolas Goaziou

Re: [O] tentative patch Re: commit found, was: Re: ECM for: issues with publishing to LaTeX using #INCLUDE

2015-06-21 Thread Robert Klein
Hello, you're right about eval and symbol-value, of course. I mixed up my test files, so both the commit I `identified' and the `patch' are bogus. I now used git bisect for both my current minimal setup (.emacs attached as .femacs and the files ~/ot/1.org, ~/ot/2.org, and ~/ot/3.org all three hav

[O] including svg files in odt exports?

2015-06-21 Thread joakim
Hello, I would like to include svg files in odt exports. png files seem to work fine, but svg files do not get inlined by default. Adding svg to the org-odt-inline-image-rules regexp works. Could this be included in org? -- Joakim Verona

Re: [O] sip: links

2015-06-21 Thread Michael Strey
Hi Christian, On Sa, 2015-06-20, Christian Thaeter wrote: > anyone of you happen to have a url handler for 'sip:' links invoking a > telephony app (eg. linphone) when clicked? The attached org-dial.el provides support for a link type `tel:' as well as for dialing from properties in org-contacts.

[O] Order of TODO entries by `org-sort-entries' [8.2.10 (release_8.2.10 @ /usr/share/emacs/24.4/lisp/org/)]

2015-06-21 Thread Simen Heggestøyl
Hi! Consider the following outline tree: * Tasks ** TODO [#B] B ** DONE C ** TODO [#A] A When calling `org-sort-entries' on the top level headline, and selecting `o' to sort by TODO order, the order becomes the following: B, A, C. However, I would expect the order A, B, C, since A has higher pr

Re: [O] Why navigating in Org mode is so slow in overview mode?

2015-06-21 Thread Gregor Zattler
Hi Nicolas, * Nicolas Goaziou [21. Jun. 2015]: > Gregor Zattler writes: >> - but there some hangs now and then. > > Is it a complete freeze (i.e., you need to use C-g to get out of the > loop) or a slowdown of a couple of seconds? It’s a slow down. > The former is a bug. However, some changes

Re: [O] What is the symbol/glyph that ... ?

2015-06-21 Thread Sharon Kimble
Juan Pechiar writes: > "I" (capital letter i) is bound to org-agenda-clock-in. > > You can check binding in your installation via describe-function: > >C-h f org-agenda-clock-in > > In the agenda buffer, you can check what is "I" bound to: > >C-h k I > Thanks for this Juan. For some obsc

Re: [O] Why navigating in Org mode is so slow in overview mode?

2015-06-21 Thread Nicolas Goaziou
Gregor Zattler writes: > - but there some hangs now and then. Is it a complete freeze (i.e., you need to use C-g to get out of the loop) or a slowdown of a couple of seconds? The former is a bug. However, some changes in the buffer imply a massive loss of the cache (e.g., inserting a block cle