Re: [O] An org password manager

2014-06-06 Thread Michael Albinus
jorge.a.alf...@gmail.com (Jorge A. Alfaro-Murillo) writes: Michael Albinus michael.albi...@gmx.de writes: Hi Jorge, A useful feature would be an auth-source backend, See (info (auth)) By this, other packages (like Gnus or Tramp) would profit from the password manager directly. Thanks

[O] latex equations and $ sign

2014-06-06 Thread Federico Beffa
Hi, I would like to have a mathematical equation typeset in latex and automatically generated by sympy, embedded in an equation environment: #+NAME: mass-energy #+BEGIN_SRC python :results raw :exports results :wrap EQUATION import sympy as sp E, m, c = sp.symbols('E, m, c',

Re: [O] latex equations and $ sign

2014-06-06 Thread Jorge A. Alfaro-Murillo
Federico Beffa be...@ieee.org writes: Hi, I would like to have a mathematical equation typeset in latex and automatically generated by sympy, embedded in an equation environment: #+NAME: mass-energy #+BEGIN_SRC python :results raw :exports results :wrap EQUATION import sympy as sp E, m,

[O] Display only latest sub notes in agenda

2014-06-06 Thread Steffen Heilmann
Dear all, thank you very much for the very helpful org-mode! I have been using it extensively during my studies and it saved me a great deal of trouble and time. Now I want to use org-mode to organize / manage my networking contacts. I will have a top-level (*) entry for every person, and

Re: [O] Remove the build-in orgmode

2014-06-06 Thread Nick Dokos
Bastien b...@gnu.org writes: Hi Thorsten, Thorsten Jolitz tjol...@gmail.com writes: (On Archlinux) I simply trash the Org dir shipped with Emacs and put a symlink to my git-version of Org-mode there. I was told I shouldn't do that, but since I had many problems with mixed installs before,

Re: [O] export org-table to wiki code

2014-06-06 Thread Shiyuan
I mean the pipe syntax as in http://en.wikipedia.org/wiki/Help:Table On Fri, Jun 6, 2014 at 1:31 AM, Loris Bennett loris.benn...@fu-berlin.de wrote: Hi, Shiyuan gshy2...@gmail.com writes: Hi, Is there a way to export a org-table to wiki code? Thanks. Shiyuan I don't think

Re: [O] Adding source location information when tangling

2014-06-06 Thread Eric Schulte
Thomas Morgan t...@ziiuu.com writes: Hi, Rainer, Rainer M Krug r.m.k...@gmail.com writes: Envoyé de mon iPhone Le 25 mai 2014 à 18:28, Thomas Morgan t...@ziiuu.com a écrit : Dear Org hackers, I have a question about tangling LilyPond code blocks. Is there a way to put the

Re: [O] Bug: ob-ditaa fails in generating pdf correctly

2014-06-06 Thread Eric Schulte
Anders Johansson mejlaande...@gmail.com writes: Hi, Example input: #+header: :eps t #+header: :file hello.pdf #+BEGIN_SRC ditaa +--+ | | |Hello | | | +--+ #+END_SRC When using the above code (which I guessed should be the

Re: [O] [BUG] [babel] in :eval never with :session

2014-06-06 Thread Eric Schulte
Rainer M Krug rai...@krugs.de writes: Charles Berry ccbe...@ucsd.edu writes: Eric Schulte schulte.eric at gmail.com writes: Rainer M Krug Rainer at krugs.de writes: The error is back: You say back, was this error not present recently? If so could you isolate the commit at which

Re: [O] Collapse LaTeX source before start of main document?

2014-06-06 Thread Eric Schulte
Matt Lundin m...@imapmail.org writes: Chris Malone chris.m.mal...@gmail.com writes: (Note: When using gmail, please adjust the settings to send your messages as plain text only instead of multipart/alternative.) When I include the actual contents of my abstract, this preliminary material

Re: [O] babel C, C++, D enhancement

2014-06-06 Thread Eric Schulte
Hi Thierry, This looks wonderful, however after applying this patch I get the following errors when running make test-dirty. 10 unexpected results: FAILED ob-C/inhomogeneous_table FAILED ob-D/inhomogeneous_table FAILED ob-D/integer-var FAILED ob-D/list-list-var FAILED

[O] export \cite options with ox-bibtex

2014-06-06 Thread Eric Schulte
Hi, I just pushed up a small change to ox-bibtex (in comtrib), so that it is possible to include options in cite: links. So for example the following link [[cite:(Chapter 2)foo]] will be converted to the following LaTeX \cite[Chapter 2](foo). Best, -- Eric Schulte https://cs.unm.edu/~eschulte

Re: [O] a minor patch to awk invocation

2014-06-06 Thread Eric Schulte
Greg Minshall minsh...@acm.org writes: hi. i just wandered down a rathole others could avoid. the following program fails in (what was to me) a mysterious way: #+BEGIN_SRC awk :var a=2 BEGIN{print $a;} #+END_SRC it turns out values for variables to awk need to be strings

Re: [O] Remove the build-in orgmode

2014-06-06 Thread Achim Gratz
Nick Dokos writes: I did that in the past (presumably for reasons similar to Thorsten's) and I don't bother any longer (overriding is simple enough as you point out), but the question still bugs me: what's so bad about it? The reason it is bad is that parts of the code have already leaked out

Re: [O] org-contacts email completion by tags

2014-06-06 Thread John Kitchin
Here is what I finally ended up with to allow completion with tag expressions. I did not figure out how to avoid overwriting an org-contacts function. I thought I could find the right hooks to use, but I could not figure it out. It is only a one line modification to the org-contacts function. This

Re: [O] Adding source location information when tangling

2014-06-06 Thread Thomas Morgan
Eric Schulte schulte.e...@gmail.com writes: Thomas Morgan t...@ziiuu.com writes: Hi, Rainer, Rainer M Krug r.m.k...@gmail.com writes: Envoyé de mon iPhone Le 25 mai 2014 à 18:28, Thomas Morgan t...@ziiuu.com a écrit : Dear Org hackers, I have a question about tangling LilyPond

[O] Dired-like agenda

2014-06-06 Thread Samuel Wales
Here is a brainstorm/RFC/FR. It is not entirely worked out, but it gives the flavor. The idea is to make Org agenda act more like Dired for consistency. For example, we might have commands like: 1) %m -- mark headers with regexp 2) %g -- mark headers with regexp in body text of entry 3)

Re: [O] a minor patch to awk invocation

2014-06-06 Thread Greg Minshall
very nice -- thanks! I've just pushed up a patch which changes the behavior of awk code blocks to assign variables on the command line, so the following now work. #+begin_src awk :var a=2 BEGIN{ print a; } #+end_src #+RESULTS: : 2

Re: [O] a minor patch to awk invocation

2014-06-06 Thread Greg Minshall
though, in the spirit of no good deed goes unpunished: #+name: foo | a | b | c | #+begin_src awk :var a=foo BEGIN{ print a; } #+end_src gives an error (and, ':var a=this is a test' doesn't behave as one might expect). i haven't looked at ob-*.el enough to know the patterns used to wrap

Re: [O] Remove the build-in orgmode

2014-06-06 Thread Thorsten Jolitz
Achim Gratz strom...@nexgo.de writes: Nick Dokos writes: I did that in the past (presumably for reasons similar to Thorsten's) and I don't bother any longer (overriding is simple enough as you point out), but the question still bugs me: what's so bad about it? The reason it is bad is that