Re: [O] Fast Access to TODO States without C-t

2014-04-15 Thread Oleh
Hi Esben, If I hit 't' over a TODO item, it just changes the state to the next state. How can I jump to DONE(d!), f.ex? There's https://github.com/abo-abo/worf (also in MELPA) - an alternative to org speed keys. It's inspired by vi, so your task is handled by cwd (change word DONE). Other

Re: [O] radio links in middle of words.

2014-04-15 Thread Daniel Clemente
El Thu, 10 Apr 2014 23:43:41 +0200 Nicolas Goaziou va escriure: It could work. But I think [:alnum:] is needed instead of [:alpha:]. Here's a patch implementing it. Now it's much better. Thanks.

Re: [O] org-agenda-custom-command for property AND TODO state (for a cooking guide :) )

2014-04-15 Thread Alexander Baier
On 2014-04-15 06:12 Xebar Saram wrote: thx alot Alexander! this worked. any idea how to bind this to a key? ie have C-c / m +TODO=TODO+TYPE=main bound to F1-c etc.. You create an interactive function that simply calls `org-match-sparse-tree' with the right match string: #+begin_src

Re: [O] A file with 'org-mode rot'?

2014-04-15 Thread Karl Voit
* Erik Iverson erikriver...@gmail.com wrote: Remote possibility: I've had issues with org-mode being slow when using linum-mode in the past: E.g., http://stackoverflow.com/questions/5229705/emacs-org-mode-turn-off-line-numbers So you might want to make sure that's not enabled. I haven't

Re: [O] total time spent on a task

2014-04-15 Thread Christoph Groth
Sacha Chua sa...@sachachua.com writes: Hmm, mine shows clock overlays for all headings with clock entries, including TODO headings. I'm on Org 8.2.5h. By any chance, could those overlays have invisible text? You can customize-face org-clock-overlay. I remember that had been a problem for

Re: [O] Multiple Recursive Directories with org-agenda-files

2014-04-15 Thread Julian M. Burgos
Hi Esben, I use find-lisp-find-files. I have the following in my .emacs file: ;;-- ;; Load org agenda files ;;-- (load-library find-lisp)

[O] radio links match blank spaces

2014-04-15 Thread Daniel Clemente
Hi, after the recent change to radio links, THIS link will make the 2 spaces around THIS word become blue, as if they were part of the link. I wanted to write a test. I have been inspecting org-element's result but I can't understand the :begin and :end properties; they seem to be too high,

[O] How to change org-export-html-style

2014-04-15 Thread Rustom Mody
My html styles are in a file my-org.css in ~/orghacks I need (for various reasons) to inline these styles I have this code in my init to change the html style - (defun rusi/load-css() Returns string from css file (hardwired) suitable for inline css

Re: [O] How to change org-export-html-style

2014-04-15 Thread Rustom Mody
On Tue, Apr 15, 2014 at 5:00 PM, Rustom Mody rustompm...@gmail.com wrote: My html styles are in a file my-org.css in ~/orghacks I need (for various reasons) to inline these styles I should have mentioned the org version: 8.2.5e Emacs version: 24.3.1

[O] bash alias and history in code block (again)

2014-04-15 Thread OSiUX
Hi, in the past I ask *How to use alias and bash builtin functions?* http://lists.gnu.org/archive/html/emacs-orgmode/2013-12/msg00205.html The solution: (setq org-babel-sh-command bash -i) But now don't work anymore :-( My Org-mode version: 8.2.5h release_8.2.5h-660-gef207f Looking the

Re: [O] empty default captions for src blocks

2014-04-15 Thread Dominik Ernst
By the way, the same applies to labels. I had hoped, that moving the options from lstset into [] brackets in front of the region would make it be valid for that element only, but it did nothing.

Re: [O] Fast Access to TODO States without C-t

2014-04-15 Thread Greg Troxel
Esben Stien b...@esben-stien.name writes: I'm trying to figure out how to bind fast access to TODO states, without using C-t. The reason is that I have C-t as escape code for my screen session. This isn't what you asked, but I would suggest changing your escape key and perhaps using tmux

[O] Archive subtree with parent structure

2014-04-15 Thread Florian Lindner
Hello, is it possible to org-archive-subtree a subtree and keep the entire parent structure? e.g. * A ** AA ** AB ** AC AB will be archived to: * A ** AB Another question, just out of interest: Why is there org-archive-subtree-default at all? According to documentation and source it

Re: [O] Fast Access to TODO States without C-t

2014-04-15 Thread Thorsten Jolitz
Greg Troxel g...@ir.bbn.com writes: Esben Stien b...@esben-stien.name writes: I'm trying to figure out how to bind fast access to TODO states, without using C-t. The reason is that I have C-t as escape code for my screen session. This isn't what you asked, but I would suggest changing

Re: [O] Fast Access to TODO States without C-t

2014-04-15 Thread Nick Dokos
Thorsten Jolitz tjol...@gmail.com writes: I thought about that too and came up with C-o as tmux prefix key, probably I actually do use the scratch buffer quite frequently: ,--- | C-j runs the command eval-print-last-sexp, which

[O] org beamer newb TOC problem

2014-04-15 Thread Neal Becker
I'm just learning about org mode, although I've used both emacs and beamer for many years. In my first attempt, I get a frame 'Contents', which is blank. I tried various options, but never get anything but a blank 'Contents'. Here is an attempt: #+TITLE: A Test #+startup: beamer

Re: [O] Export arrays for 'sh' code blocks when using bash

2014-04-15 Thread Nick Dokos
Eric Schulte schulte.e...@gmail.com writes: Also, if you can sign your patches (git format-patch -s) that'd be even better, but not mandatory. Should I start signing my patches as well? I'm very happy to, I've just never thought about it. If so is there an easy way to make -s a default

Re: [O] radio links match blank spaces

2014-04-15 Thread Nicolas Goaziou
Hello, Daniel Clemente n142...@gmail.com writes: Hi, after the recent change to radio links, THIS link will make the 2 spaces around THIS word become blue, as if they were part of the link. This should be fixed. Thank you for reporting it. I wanted to write a test. I have been inspecting

Re: [O] Fast Access to TODO States without C-t

2014-04-15 Thread Esben Stien
Eric Abrahamsen e...@ericabrahamsen.net writes: Well there's got to be some way to send the escape sequence to the running process! Googling indicates it might be C-t t You're right;) C-c C-t t sends C-c C-t to emacs. I can see it says C-c C-t in the mode-line. does C-c C-t t d work?

Re: [O] Multiple Recursive Directories with org-agenda-files

2014-04-15 Thread Esben Stien
Julian M. Burgos jul...@hafro.is writes: (load-library find-lisp) (add-hook 'org-agenda-mode-hook (lambda () (setq org-agenda-files (find-lisp-find-files /home/julian/Documents \.org$)) )) This is not a multiple directories examples, so I tried: (add-hook 'org-agenda-mode-hook

Re: [O] Multiple Recursive Directories with org-agenda-files

2014-04-15 Thread Nick Dokos
Esben Stien b...@esben-stien.name writes: Julian M. Burgos jul...@hafro.is writes: (load-library find-lisp) (add-hook 'org-agenda-mode-hook (lambda () (setq org-agenda-files (find-lisp-find-files /home/julian/Documents \.org$)) )) This is not a multiple directories examples, so I

[O] Trouble with Tables and Python

2014-04-15 Thread Martin Schöön
This is my first post here... I have been using org-mode as a pure TODO-tool for some time but this winter I realised it could be used for much more and I have been experimenting with mixing in LaTeX and Python for fun and because I find literate programming a particularly sane idea (I am a HW

Re: [O] Trouble with Tables and Python

2014-04-15 Thread Nick Dokos
Martin Schöön martin.sch...@gmail.com writes: ... Let's move over to the third example file and the real mystery. This all my own code. Reading data from the first table works just fine and the same goes for the calculations. The output table, however, is different from that of example 2.

[O] Recording results of TODO items

2014-04-15 Thread William Kunkel
Is there a standard way to record the outcomes of certain TODO items? For example, I had a TODO item to research and come to a decision about part of the architecture of a software project I'm starting, and I'd like to record the result of that TODO item, that is, the decision that I made. I found

[O] undocumented? struggled with category filter on daily/weekly agenda view custom command.

2014-04-15 Thread Brady Trainor
Goal: To make an agenda view custom command that will filter a daily/weekly view by category. I tried to use the documented `org-agenda-category-filter-preset', similar to functionality of the analogous tag variable, `org-agenda-tag-filter-preset'. It does not seem to work. However, a word

Re: [O] The Org Package

2014-04-15 Thread David Masterson
t...@tsdye.com (Thomas S. Dye) writes: David Masterson dsmaster...@gmail.com writes: Achim Gratz strom...@nexgo.de writes: David Masterson writes: Something doesn't seem right and I'm sure I'm missing some key in understanding how its supposed to work. What I see right now seems like

Re: [O] Trouble with Tables and Python

2014-04-15 Thread John Kitchin
I should probably confess to having this in my .emacs files: ;; language specific headers. I think this comes before the defaults (setq org-babel-default-header-args:emacs-lisp (cons '(:results . value replace) (assq-delete-all :results org-babel-default-header-args))) ;; set

Re: [O] Fast Access to TODO States without C-t

2014-04-15 Thread Eric Abrahamsen
Esben Stien b...@esben-stien.name writes: Eric Abrahamsen e...@ericabrahamsen.net writes: Well there's got to be some way to send the escape sequence to the running process! Googling indicates it might be C-t t You're right;) C-c C-t t sends C-c C-t to emacs. I can see it says C-c C-t in

Re: [O] Recording results of TODO items

2014-04-15 Thread Eric Abrahamsen
William Kunkel w...@wkunkel.com writes: Is there a standard way to record the outcomes of certain TODO items? For example, I had a TODO item to research and come to a decision about part of the architecture of a software project I'm starting, and I'd like to record the result of that TODO

Re: [O] Recording results of TODO items

2014-04-15 Thread William Kunkel
I could well add it in a sub-heading under the TODO, I was just curious if there was a built-in org-mode way that I ought to be using instead of rolling something of my own. Cheers, Will On Tue, Apr 15, 2014 at 10:27 PM, Eric Abrahamsen e...@ericabrahamsen.netwrote: William Kunkel

Re: [O] Recording results of TODO items

2014-04-15 Thread Eric Abrahamsen
William Kunkel w...@wkunkel.com writes: I could well add it in a sub-heading under the TODO, I was just curious if there was a built-in org-mode way that I ought to be using instead of rolling something of my own. Ah, no -- I think the state-change note is about as built-in as it gets...

Re: [O] Recording results of TODO items

2014-04-15 Thread William Kunkel
Alright, I'll just do my own thing then, I suppose. Thanks! On Tue, Apr 15, 2014 at 10:48 PM, Eric Abrahamsen e...@ericabrahamsen.netwrote: William Kunkel w...@wkunkel.com writes: I could well add it in a sub-heading under the TODO, I was just curious if there was a built-in org-mode way

Re: [O] How to change org-export-html-style

2014-04-15 Thread Rustom Mody
On Tue, Apr 15, 2014 at 10:39 PM, Rick Frankel r...@rickster.com wrote: On 2014-04-15 07:30, Rustom Mody wrote: I need (for various reasons) to inline these styles I have this code in my init to change the html style - (defun rusi/load-css() Returns

[O] Org-Babel concise named scalar variables

2014-04-15 Thread William Kunkel
I'm just getting started using Org Babel and I've run into a bit of an annoyance that I can't seem to find an answer to in the Org Babel docs. I find myself wanting to use one variable in multiple code blocks, for example, the path to a file. Org Babel provides several mechanisms for including

Re: [O] How to change org-export-html-style

2014-04-15 Thread Nick Dokos
Rustom Mody rustompm...@gmail.com writes: On Tue, Apr 15, 2014 at 10:39 PM, Rick Frankel r...@rickster.com wrote: On 2014-04-15 07:30, Rustom Mody wrote: I need (for various reasons) to inline these styles I have this code in my init to change the html style

[O] Bug: C-C C-W (refile) makes copy when invoked in Agenda view

2014-04-15 Thread Subhasis Ray
Hi, I encounter the issue as described here: http://lists.gnu.org/archive/html/emacs-orgmode/2013-09/msg01284.html More specifically, it copies the task in stead of moving it when I press C-c C-w while creating a task, but if I quit emacs and press C-c C-w on an existing entry in my agenda