Re: [O] Bug: Failure in `org-store-link'

2014-03-10 Thread Eric Schulte
This is not a tangling bug, this is actually a bug in org-store-link, which throws an error when called in an Org-mode file outside of any heading. Thanks for pointing this out. Best, Sean Allred seall...@smcm.edu writes: Remember to cover the basics, that is, what you expected to happen and

Re: [O] mobileorg capture todo's

2014-03-10 Thread Sean Escriva
Chris Henderson henders...@gmail.com writes: The org file on my computer has * Tasks * Projects * Someday/ Maybe. If I capture on mobileorg, is there a way for the captured items to be listed on my computer's org file under the * Tasks section when I sync it? I think at the moment they are

[O] small koma bug

2014-03-10 Thread Alan Schmitt
Hello Rasmus and all, I think I have found a small bug in ox-koma-letter, but to fix it I would like your input. The bug: if from-address is not specified in the file, then it will be set unconditionally to the empty string, even if it is specified in an lco file. The reason of the bug is as

Re: [O] verbatim/code text and line breaks with auto fill mode

2014-03-10 Thread Sebastien Vauban
Alan Schmitt wrote: I've continued looking into this, and it seems that what I want is use `fill-nobreak-predicate'. This is what I ended up doing: #+begin_src emacs-lisp (add-hook 'org-mode-hook (lambda () (add-hook 'fill-nobreak-predicate 'org-in-verbatim-emphasis)))

[O] Howto: different faces for begin_src and results

2014-03-10 Thread Miguel Ruiz
Hi I was wondering if it's possible to have different faces for #+begin_src/#+end_src and results so distinguishing the blocks is easier. TIA. Protect your computer files with professional cloud backup. Get PCRx Backup and upload

Re: [O] verbatim/code text and line breaks with auto fill mode

2014-03-10 Thread Nicolas Goaziou
Hello, Sebastien Vauban sva-news-D0wtAvR13HarG/idocf...@public.gmane.org writes: Alan Schmitt wrote: I've continued looking into this, and it seems that what I want is use `fill-nobreak-predicate'. This is what I ended up doing: #+begin_src emacs-lisp (add-hook 'org-mode-hook

Re: [O] Bug in export of call lines

2014-03-10 Thread Nicolas Goaziou
Hello, t...@tsdye.com (Thomas S. Dye) writes: I've been dusting off a draft paper written when the new export framework was still in contrib. Now that I've brought the file up-to-date so that it exports asynchronously again, I'm getting an error that wasn't there before. [...] Note the

[O] Inactive timestamps in planning types?

2014-03-10 Thread Thorsten Jolitz
Hi List, can inactive timestamps appear in - title-stamps (the timestamps attached to headlines) - planning types like deadline, scheduled and closed ? It does not seem to make much sense to me, but maybe I'm overlooking something. -- cheers, Thorsten

Re: [O] Using sideways table with :placement in Org 8.0?

2014-03-10 Thread John Hendy
On Mar 10, 2014 12:22 AM, Nick Dokos ndo...@gmail.com wrote: John Hendy jw.he...@gmail.com writes: I was just playing around with the new syntax for accessing sidewaystable in Org 8.0, but it doesn't seem to be working. The manual /seems/ pretty straightforward: -

Re: [O] small koma bug

2014-03-10 Thread Rasmus
Hi Alan, Alan Schmitt alan.schm...@polytechnique.org writes: I think I have found a small bug in ox-koma-letter, but to fix it I would like your input. The bug: if from-address is not specified in the file, then it will be set unconditionally to the empty string, even if it is specified in

Re: [O] exporter for latex g-brief - extending \begin{document}

2014-03-10 Thread Rasmus
LanX, LanX lanx.p...@googlemail.com writes: Have you tried ox-koma-letter.el? not yet, I just started recently switching back to latex and g-brief did what I needed for a formal german letter and I just need it once per month so far. KOMA-Script has build in support for DIM. #+TITLE:

[O] How to detect latex subscripts with org-element?

2014-03-10 Thread Rasmus
Hi, I want to detect if my point is inside a super/subscript irrespective of whether I'm in a latex-fragment/environment or in plain text. If | is my point, I can easily detect the subscript here x_{z|} using `org-element-context`. However, I have found no good way of detecting if I'm in

Re: [O] small koma bug

2014-03-10 Thread Alan Schmitt
Rasmus ras...@gmx.us writes: How about: (let ((from-address (org-koma-letter--determine-to-and-from info 'from))) (and (org-string-nw-p from-address) (format \\setkomavar{fromaddress}{%s}\n from-address))) Or more explicitly (let ((from-address

[O] Localized time-stamps irritate calc

2014-03-10 Thread Karl Voit
Hi! I work on different systems with basically the same Emacs config. However, on my Linux box I get time-stamps like [2014-03-10 Mon] and [2014-03-04 Tue] but on my Windows box I get [2014-03-10 Mo] and [2014-03-04 Di]. Obviously, my Windows box is having some German set-up (Di = Dienstag) I

Re: [O] org-element-context doesn't parse consistently link with spaces

2014-03-10 Thread Nicolas Goaziou
Hello, Bastien b...@gnu.org writes: Please do ~$ git fetch --tags to update all your tags, and make again. That worked. Thank you. Tags are on commits, not on branches, and commmits can belong to multiple branches. Since the tagged commit is both on the maint and the master branch,

Re: [O] words starting with call_ confuse C-c C-c and export

2014-03-10 Thread Nicolas Goaziou
Hello, Eric Schulte schulte.e...@gmail.com writes: Nicolas Goaziou n.goaz...@gmail.com writes: We're talking about function names, not free-form text, so limitations are understandable. For example, macro names only allow alphanumeric characters or hyphens and have to start with an

Re: [O] words starting with call_ confuse C-c C-c and export

2014-03-10 Thread Eric Schulte
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Eric Schulte schulte.e...@gmail.com writes: Nicolas Goaziou n.goaz...@gmail.com writes: We're talking about function names, not free-form text, so limitations are understandable. For example, macro names only allow alphanumeric

Re: [O] Howto: different faces for begin_src and results

2014-03-10 Thread Bastien
Hi Miguel, Miguel Ruiz rbeni...@inbox.com writes: I was wondering if it's possible to have different faces for #+begin_src/#+end_src and results so distinguishing the blocks is easier. Yes: M-x customize-face RET org-block-begin-line RET M-x customize-face RET org-meta-line RET HTH, --

[O] `org-attach-file-list' doesn't allow dotfiles

2014-03-10 Thread Oleh
Hi all, I recently investigated why `org-open-at-point` uses smplayer to open *.mp4 links, although the system's default is vlc. The solution was to create ~/.mailcap with video/mp4; vlc %s I wanted to store this file as an attachment in an org document, so I don't forget about it, but this

Re: [O] Bug in export of call lines

2014-03-10 Thread Thomas S. Dye
Aloha Nicolas, Nicolas Goaziou n.goaz...@gmail.com writes: Hello, t...@tsdye.com (Thomas S. Dye) writes: I've been dusting off a draft paper written when the new export framework was still in contrib. Now that I've brought the file up-to-date so that it exports asynchronously again, I'm

Re: [O] Bug in export of call lines

2014-03-10 Thread Eric Schulte
t...@tsdye.com (Thomas S. Dye) writes: Aloha Nicolas, Nicolas Goaziou n.goaz...@gmail.com writes: Hello, t...@tsdye.com (Thomas S. Dye) writes: I've been dusting off a draft paper written when the new export framework was still in contrib. Now that I've brought the file up-to-date so

[O] [PATCH] org-plot: Handle explicit date/time index

2014-03-10 Thread Yasushi SHOJI
* lisp/org-plot.el (org-plot-quote-tsv-field): Dump data as is when `timeind' is set. * lisp/org-plot.el (org-plot/gnuplot): By-pass type checking when either `textind' or `timeind' is set. The current org-plot relies on `org-table-number-regexp' and `org-ts-regexp3' to check the index type.

Re: [O] [RFC] Proposal for rebindings in Org 8.3

2014-03-10 Thread Greg Troxel
Bastien b...@gnu.org writes: | Key | Command | Proposal | Status | |---+---+--+| | C-c # | Checkboxes| C-c x| Free | | C-c ~ | Cooperation

Re: [O] [RFC] Move ox-koma-letter into core?

2014-03-10 Thread Greg Troxel
Viktor Rosenfeld listuse...@gmail.com writes: FWIW, I think that the copyright assignment process creates a huge barrier of entry to contribute to Orgmode and that it's unfortunate that one has to jump through hoops like this to contribute actual code (whereas other contributions, e.g.,

Re: [O] Howto: different faces for begin_src and results

2014-03-10 Thread Jambunathan K
Miguel Ruiz rbeni...@inbox.com writes: I was wondering if it's possible to have different faces for #+begin_src/#+end_src and results so distinguishing the blocks is easier. Put cursor on the character whose colour you want to change and do M-x cusotmize-face

[O] Org-Mode and Task Dependencies

2014-03-10 Thread David Masterson
Simple question -- does org-mode handle task dependencies? And, if so, how well? In the outline form, I see you could setup parent-child relationships between tasks. I'm looking for more of tasks that aren't related, but are dependent on each other. In particular, in a parent-child

Re: [O] Org-Mode and Task Dependencies

2014-03-10 Thread Nick Dokos
David Masterson dsmaster...@gmail.com writes: Simple question -- does org-mode handle task dependencies? And, if so, how well? In the outline form, I see you could setup parent-child relationships between tasks. I'm looking for more of tasks that aren't related, but are dependent on each

Re: [O] Org-Mode and Task Dependencies

2014-03-10 Thread Thorsten Jolitz
David Masterson dsmaster...@gmail.com writes: Simple question -- does org-mode handle task dependencies? And, if so, how well? In the outline form, I see you could setup parent-child relationships between tasks. I'm looking for more of tasks that aren't related, but are dependent on each

[O] [Patch] don't add indent for empty line when exiting, a code edit

2014-03-10 Thread Arun Persaud
Hi I started using org babel for python, but when using C-c ' I always ended up with white space added to the empty lines in the source code when returning into the org buffer. This especially shows up (setq-default show-trailing-whitespace t). I tried to fix this in org. It seems to work over

[O] babel: using empty lines in python code while using session

2014-03-10 Thread Arun Persaud
Hi I started using python in org babel. The manual, for example [1], points to the fact that in session mode you can't have empty lines, since they will be interpreted differently. However, if you use ipython you can get around this, by using the following in your .emacs:

Re: [O] Org-Mode and Task Dependencies

2014-03-10 Thread David Masterson
Nick Dokos ndo...@gmail.com writes: David Masterson dsmaster...@gmail.com writes: Simple question -- does org-mode handle task dependencies? And, if so, how well? In the outline form, I see you could setup parent-child relationships between tasks. I'm looking for more of tasks that aren't

Re: [O] Bug in export of call lines

2014-03-10 Thread Thomas S. Dye
Eric Schulte schulte.e...@gmail.com writes: Somehow this doesn't seem to be a problem with other languages, so I believe the necessary fix may be R specific. Following is a small test that appears to indicate that the bug is R specific and only bites when the source code block has :results

[O] Some links not working anymore for me

2014-03-10 Thread François Pinard
Hi, Org people. For a little while, I've not been able to follow links to Org files, when the link contains a search to some header, and the searched header itself contains white space or non-ASCII characters. I just made this patch that apparently helps me out of this new little misery :-).

Re: [O] Some links not working anymore for me

2014-03-10 Thread Daimrod
François Pinard pin...@iro.umontreal.ca writes: Hi, Org people. Hello, For a little while, I've not been able to follow links to Org files, when the link contains a search to some header, and the searched header itself contains white space or non-ASCII characters. I just made this patch