Re: [O] A mail client that is org-mode compatible

2013-01-03 Thread Michael Strey
On Wed, Jan 02, 2013 at 01:07:20PM -0600, Robert Goldman wrote: I use multiple devices, so I need to have an IMAP server that really is an IMAP server, instead of something the just serves up messages to be downloaded. I have multiple folders, and I read messages from different clients. I

[O] Keybinding for org-footnote-action in mail-mode

2013-01-03 Thread Igor Sosa Mayor
Hi, i'm trying to use org-footnote-action in mail-mode for writing footnotes. I would like to bind it to C-c C-x f. If I put this in .emacs (eval-after-load 'mail '(define-key mail-mode-map [C-c C-x f] 'org-footnote-action)) I get the message: C-c C-x f is undefined. This line appears before

Re: [O] org-mobile-push and SUMO buffer

2013-01-03 Thread Bastien
Hi Ramon, Ramon Diaz-Uriarte rdia...@gmail.com writes: - Then, when org-mobile-push runs (either because it tell it do so, or because the timer says so), the display gets redrawn, and I get only two windows, one with *Org Agenda* and the other with the *SUMO* buffer. This is very

Re: [O] BUG in org-mobile-create-index-file()

2013-01-03 Thread Bastien
Hi David, da...@adboyd.com (J. David Boyd) writes: The section of the code that writes out the Priorities (line 462 in org version 7.9.2) totally ignores the variables org-highest-priority and org-lowest-priority, and simply sets the #+ALLPRIORITIES value to A B C. In my case, I have

Re: [O] org-mobile-push vs. symlinks

2013-01-03 Thread Bastien
Hi James, James Harkins jamshar...@gmail.com writes: - One should not put symlinks into org-directory, or at least make sure the symlink's name is the same as the target. If this is an intentional limitation, it should be documented. - Or, the symlink resolution is not actually necessary

Re: [O] Keybinding for org-footnote-action in mail-mode

2013-01-03 Thread Bastien
Hi Igor, Igor Sosa Mayor joseleopoldo1...@gmail.com writes: (eval-after-load 'mail '(define-key mail-mode-map [C-c C-x f] 'org-footnote-action)) (define-key mail-mode-map \C-c\C-xf 'org-footnote-action) You might also want to turn on orgstruct++-mode like this: (add-hook 'mail-mode-hook

Re: [O] org-mobile-push error produces wrong-type-argument error

2013-01-03 Thread Bastien
Hi Ben, Ben Finney ben+em...@benfinney.id.au writes: I am getting the same error. I'm using the Org mode that comes with Emacs (“GNU Emacs 23.4.1”). You should not get this error anymore from maint. Thanks, -- Bastien

[O] using org mode and git efficiently

2013-01-03 Thread Luca Ferrari
Hi all, I'm using Org mode to manage my coding projects, that are all based on git. I was wondering if there are tips and tricks to use the two efficiently, for instance storing the current head when a task is marched as completed in org mode, so that the task can link to the commit that completed

Re: [O] Keybinding for org-footnote-action in mail-mode

2013-01-03 Thread Igor Sosa Mayor
Am Thu, Jan 03, 2013 at 01:36:53PM +0100, Bastien wrote: (define-key mail-mode-map \C-c\C-xf 'org-footnote-action) thanks, Bastien, it works perfectly. You might also want to turn on orgstruct++-mode like this: orgstruct++-mode wsa already on. It is supposed to activate also the footnote

Re: [O] using org mode and git efficiently

2013-01-03 Thread Jambunathan K
Luca Ferrari fluca1...@infinito.it writes: Hi all, I'm using Org mode to manage my coding projects, that are all based on git. I was wondering if there are tips and tricks to use the two efficiently, for instance storing the current head when a task is marched as completed in org mode, so

Re: [O] Keybinding for org-footnote-action in mail-mode

2013-01-03 Thread Bastien
Hi Igor, Igor Sosa Mayor joseleopoldo1...@gmail.com writes: orgstruct++-mode wsa already on. It is supposed to activate also the footnote functionality. At least C-c C-x f is not activated... Not, it `C-c C-x f' is not activated by orgstruct++-mode -- I don't think it should, as

Re: [O] Keybinding for org-footnote-action in mail-mode

2013-01-03 Thread Igor Sosa Mayor
Am Thu, Jan 03, 2013 at 02:48:16PM +0100, Bastien wrote: Not, it `C-c C-x f' is not activated by orgstruct++-mode -- I don't think it should, as orgstruct++-mode keybindings are only active in Org's structures, and `org-footnote-action' should be available in paragraphs as well. thanks for

Re: [O] A mail client that is org-mode compatible

2013-01-03 Thread Gour
On Thu, 3 Jan 2013 13:11:26 +0100 Stelian Iancu li...@siancu.net wrote: You guys might want to check out mu4e as well: http://www.djcbsoftware.nl/code/mu/mu4e.html It's quite young but shows a lot of promise. Looks interesting, but it lacks support for nntp and all the mailing lists I

Re: [O] monthly budget with year summary using tables

2013-01-03 Thread Darlan Cavalcante Moreira
A have a setup similar to the one you ask, using tables, but I don't need babel for that. Basically, I have a Finances headline in my main org file, whose children are years headlines. In the beginning of each month I create a new headline for that month in the current year using a template so

Re: [O] monthly budget with year summary using tables

2013-01-03 Thread Stelian Iancu
This is fascinating, thanks for explaining this. One question though is about the templates. I wasn't aware you can have such things in org-mode. Can you elaborate a bit on those? Thanks! S. On Thu, Jan 3, 2013 at 3:57 PM, Darlan Cavalcante Moreira darc...@gmail.com wrote: A have a setup

Re: [O] using org mode and git efficiently

2013-01-03 Thread Luca Ferrari
Thanks, this is really close to what I was searching for (I believe that using the bare metal mode with the commit object is what I need to track which commit closed the task. I'll try it. Thanks, Luca

Re: [O] using org mode and git efficiently

2013-01-03 Thread Torsten Wagner
Hi, there exist a contrib http://orgmode.org/worg/org-contrib/org-git-link.html which allows you to link to specific versions of a file under git control. Thus, you can describe a error/feature/behavior in a file and make sure the description remains valid even if you change the file in the mean

[O] help advicing org-todo

2013-01-03 Thread Luca Ferrari
Hi all, I'd like to advice the function org-todo to check in and check out the clock automatically. I've defined the org-todo-keywords so that they have a choice letter as follows: (setq org-todo-keywords '( (sequence TODO(t!) | DONE(d!)) (sequence FEATURE(f!) BUG(b!)

[O] noweb reference to #+call

2013-01-03 Thread Myles English
Hi, It would be useful to be able to use the noweb reference syntax to refer to #+CALL: lines: e.g.: #+name: myFunction #+BEGIN_SRC sh :var A= :noweb yes echo $A #+END_SRC #+CALL: myFunction[:results output](A=aaa) :noweb-ref mynoweb #+header: :noweb yes #+begin_src sh mynoweb #+end_src

Re: [O] help advicing org-todo

2013-01-03 Thread Bastien
Hi Luca, Luca Ferrari fluca1...@infinito.it writes: I'd like to advice the function org-todo to check in and check out the clock automatically. I would not advice `org-todo', I would explore the idea of adding a function to `org-after-todo-state-change-hook'. I've defined the

Re: [O] help advicing org-todo

2013-01-03 Thread Luca Ferrari
Thanks, a very good advice. Now, forgive my lisp ignorance, but I've defined the following function to do what I want: (defun org-todo-automatic-clock () Starts/Stops the clock when a task is marked as implementing or completed (if (string= state org-todo-fluca1978-running)

Re: [O] help advicing org-todo

2013-01-03 Thread Nick Dokos
Luca Ferrari fluca1...@infinito.it wrote: Thanks, a very good advice. Now, forgive my lisp ignorance, but I've defined the following function to do what I want: (defun org-todo-automatic-clock () Starts/Stops the clock when a task is marked as implementing or completed (if (string=

[O] Bug: org-agenda-get-todos: Wrong type argument: integer-or-marker-p, nil [7.9.2 (7.9.2-181-ge8aaca-elpa @ c:/users/--------/documents/store/.emacs.d/elpa/org-20121231/)]

2013-01-03 Thread Andrews, Kyle (KC)
When I try to rebuild the agenda buffer to display only TODO's with 1 r I get the error: org-agenda-get-todos: Wrong type argument: integer-or-marker-p, nil And then the buffer is left blank. Here is the backtrace: #+BEGIN_QUOTE Debugger entered--Lisp error: (wrong-type-argument

Re: [O] BUG in org-mobile-create-index-file()

2013-01-03 Thread J. David Boyd
Cool, thanks for the change! Dave Bastien b...@altern.org writes: Hi David, da...@adboyd.com (J. David Boyd) writes: The section of the code that writes out the Priorities (line 462 in org version 7.9.2) totally ignores the variables org-highest-priority and org-lowest-priority, and

Re: [O] A mail client that is org-mode compatible

2013-01-03 Thread Robert Goldman
On 1/3/13 Jan 3 -4:17 AM, Daniel Clemente wrote: El Wed, 02 Jan 2013 13:07:20 -0600 Robert Goldman va escriure: Thunderbird, which I have been using, doesn't support links to messages. OTOH, it has the best IMAP client I have found, so I keep coming back to it. Gnus: I regret to say that

Re: [O] Bug: org-agenda-get-todos: Wrong type argument: integer-or-marker-p, nil [7.9.2 (7.9.2-181-ge8aaca-elpa @ c:/users/--------/documents/store/.emacs.d/elpa/org-20121231/)]

2013-01-03 Thread Nick Dokos
Andrews, Kyle (KC) kcandr...@dow.com wrote: When I try to rebuild the agenda buffer to display only TODO's with 1 r I= get the error: org-agenda-get-todos: Wrong type argument: integer-or-marker-p, nil And then the buffer is left blank. Here is the backtrace: Debugger

Re: [O] Bug: org-agenda-get-todos: Wrong type argument: integer-or-marker-p, nil [7.9.2 (7.9.2-181-ge8aaca-elpa @ c:/users/--------/documents/store/.emacs.d/elpa/org-20121231/)]

2013-01-03 Thread Nick Dokos
Nick Dokos nicholas.do...@hp.com wrote: Andrews, Kyle (KC) kcandr...@dow.com wrote: Maybe it is related to this issue? http://lists.gnu.org/archive/html/emacs-orgmode/2012-03/msg00310.html I'd say probably not. Well, looking at it some more, you may very well be right:

Re: [O] Bug: org-agenda-get-todos: Wrong type argument: integer-or-marker-p, nil [7.9.2 (7.9.2-181-ge8aaca-elpa @ c:/users/--------/documents/store/.emacs.d/elpa/org-20121231/)]

2013-01-03 Thread Bastien
Hi Andrew, Andrews, Kyle (KC) kcandr...@dow.com writes: When I try to rebuild the agenda buffer to display only TODO's with 1 r I get the error: org-agenda-get-todos: Wrong type argument: integer-or-marker-p, nil I can't reproduce this -- could you provide a minimal recipe to reproduce the

Re: [O] org-mobile-push error produces wrong-type-argument error

2013-01-03 Thread Ben Finney
Bastien b...@altern.org writes: Hi Ben, Ben Finney ben+em...@benfinney.id.au writes: I am getting the same error. I'm using the Org mode that comes with Emacs (“GNU Emacs 23.4.1”). You should not get this error anymore from maint. Thank you. I'm not in a position to use the maint

Re: [O] org-indirect-buffer-display applies to unrelated things

2013-01-03 Thread Samuel Wales
Hi Bastien, On 1/3/13, Bastien b...@altern.org wrote: Do I understand right that you would like to display indirect buffers in a new frame and follow agenda trees in other window? And that you are forced to chose between the two right now? Yes. C-c C-x b in new frame; agenda follow in other

Re: [O] Babel related bug in elpa version 20121231

2013-01-03 Thread Robert Horn
Robert Horn rjh...@alum.mit.edu writes: I'm experimenting with starterkit on a new machine and have run into a bug in org-mode elpa version 20121231. With the stock distribution org-mode (7.8.11) in emacs 24.2 there is no problem. With the elpa version 20121231 I get an error, see the

[O] Remove filename from agenda view?

2013-01-03 Thread Boyan Penkov
Hello, In the default agenda view (C-c a), the leftmost column is the org-mode file name from which the given item stems. However, I use a single file for all my actionables, and would like to eliminate this column, as it wastes 12 or so characters worth of space on the left of the agenda.

Re: [O] Remove filename from agenda view?

2013-01-03 Thread Nick Dokos
Boyan Penkov boyan.pen...@gmail.com wrote: Hello, In the default agenda view (C-c a), the leftmost column is the org-mode file name from which the given item stems. However, I use a single file for all my actionables, and would like to eliminate this column, as it wastes 12 or so

Re: [O] Remove filename from agenda view?

2013-01-03 Thread Carsten Dominik
On 4.1.2013, at 06:28, Nick Dokos nicholas.do...@hp.com wrote: Boyan Penkov boyan.pen...@gmail.com wrote: Hello, In the default agenda view (C-c a), the leftmost column is the org-mode file name from which the given item stems. However, I use a single file for all my actionables, and