[Orgmode] On demand face for headers

2009-12-18 Thread PT
In this thread there was a solution for highlighting the whole header line, so it stands out more from the buffer text: http://thread.gmane.org/gmane.emacs.orgmode/15721/ This solution was a bit too heavy, because it affected all header lines, and I didn't want all headers to be so conspicuous

[Orgmode] Re: access scattered notes centralized

2009-12-13 Thread PT
Kestutis Matonis matonisk at gmail.com writes: I would like to clear up one thing. Lets say i have notes in /home/documents/work/note.org, /home/documents/computers/note.org, and i would like that they would stay there, but also i would like to access all scattered notes from one place

[Orgmode] org-read-date-prefer-future 'time doesn't always prefer future

2009-12-10 Thread PT
This is a very useful setting, because it allows the user to quickly schedule a task into the future by simply entering the time, but it doesn't always do the right thing. Suppose I scheduled a task to 1pm, but I didn't have time to deal with it during the day. It's 5pm now. If I want to

[Orgmode] Org needs your vote

2009-12-07 Thread PT
http://lifehacker.com/5419988/five-best-outlining-tools ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] URLs are not always linked properly

2009-11-30 Thread PT
For example, for this URL the bracketed part is not handled as part of the URL, though it should be: http://en.wikipedia.org/wiki/Lost_(TV_series) ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list.

[Orgmode] Re: Using shift and arrow keys to select lines in Aquamacs (in org-mode)

2009-11-11 Thread PT
J. David Boyd david at adboyd.com writes: But that breaks S-up modifying the priority on a task, as well as other built-in org functionality... No, it doesn't break it, because there are other builtin keys for setting task priority (C-c ,). For me text selection is a much more frequent task

[Orgmode] Re: Using shift and arrow keys to select lines in Aquamacs (in org-mode)

2009-11-10 Thread PT
Saptarshi Guha saptarshi.guha at gmail.com writes: Hello, I know shift and arrow keys are used by org-mode. But is there a way to remap them to selecting the line(as in Aquamacs text mode) (e.g shift+down highlights the current line, shift+up highlights the previous line etc). I

[Orgmode] Hide tasks from the agenda until they are due

2009-11-08 Thread PT
In a previous thread (http://thread.gmane.org/gmane.emacs.orgmode/17818) there was a discussion about using the agenda to schedule trivial time-specific tasks during the day which can be done at or after a certain time. These tasks should be hidden from the agenda until their time is due, because

[Orgmode] Re: Fast traversing directories

2009-10-31 Thread PT
andrea Crotti andrea.crotti.0 at gmail.com writes: (dolist ((d org-directories)) The loop is not run, because there are too many parens. Try this instead: (dolist (d org-directories) ___ Emacs-orgmode mailing list Remember: use `Reply All' to

[Orgmode] Re: How to Strip TODO headword and refile as a note

2009-10-24 Thread PT
Alan E. Davis lngndvs at gmail.com writes: I stumbled momentarily, realizing I not only want to archive this, get it out of my agenda and todo file, I also want to file a note about the issues, and what I learned about them. The todo file expression suggests organizational problems. When I

[Orgmode] Option to prefer future for times too

2009-10-01 Thread PT
Currently, I'm using Google Calendar and it's quick add syntax is very convenient: http://www.google.com/support/calendar/bin/answer.py?hl=enanswer=36604#text Of course, Org has similar capabilites, but I found one thing which google calendar does better: if it's 4pm and I add an event for

[Orgmode] Error when invoking remember before the first header of org file

2009-10-01 Thread PT
I have remember set up, so that new notes always go to a certain org file under a certain header: (setq org-default-notes-file (concat org-directory /todo.org)) (setq org-remember-default-headline capture) (setq org-remember-templates '((Todo ?t * TODO %?))) It works well, but if I'm at

[Orgmode] Filtering the global todo list in a custom agenda

2009-09-30 Thread PT
I'm trying to filter the global todo list, so that items with certain tags don't appear in it, but this solution doesn't seem to work: (setq org-agenda-custom-commands '((h Agenda and todo ((agenda ) (alltodo -test) Items with test tag are shown nevertheless. How

[Orgmode] Re: Filtering the global todo list in a custom agenda

2009-09-30 Thread PT
Carsten Dominik carsten.dominik at gmail.com writes: The todo agenda is not very good in matching. Better to use the tags- todo view, but specify no tags, onlt a todo match after the slash: (setq org-agenda-custom-commands '((h Agenda and todo ((agenda )

[Orgmode] Re: Filtering the global todo list in a custom agenda

2009-09-30 Thread PT
Carsten Dominik carsten.dominik at gmail.com writes: No reason not to smile (setq org-agenda-tags-todo-honor-ignore-options t) Cool! :) ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list.

[Orgmode] Re: Link not followed in first line of file

2009-09-26 Thread PT
Carsten Dominik carsten.dominik at gmail.com writes: That is a feature. How else would you insert an empty line before the link. C-q C-j, of course. It may not be too newbie friendly, I admit. :) ___ Emacs-orgmode mailing list Remember:

[Orgmode] Is it possible to show an agenda item only if it's due?

2009-09-22 Thread PT
I have several items on my agenda which have a time specification (e.g. 4pm), but it only means I should work on it sometime after 4pm. It can even be 8pm when I actually deal with the item. So there is no need for me to see the item constantly on the daily agenda, I'd like this item to appear

[Orgmode] Re: Is it possible to show an agenda item only if it's due?

2009-09-22 Thread PT
Matt Lundin mdl at imapmail.org writes: One recommendation: Create an :EVENING: tag and filter it out in the agenda. Or, optionally, create custom agenda commands for day and evening agendas that pull up different results based on tags. This wouldn't work, because I have lots of

[Orgmode] Re: Is it possible to show an agenda item only if it's due?

2009-09-22 Thread PT
Matt Lundin mdl at imapmail.org writes: Ah I see. Another idea: write an agenda skip function that converts the timestamp to universal time and ignores the entry if it is greater than (current-time). Such as, Wow, I didn't you can write your own agenda skip function. The depths of Org are

[Orgmode] Eliminate DONE state?

2009-09-18 Thread PT
Is is possible to eliminate the DONE state completely? I'd like a single state TODO and want to switch between TODO and nothing states, but (setq org-todo-keywords '((sequence TODO))) doesn't seem to work, because it always considers the last state as a DONE state. Is it possible to have

[Orgmode] Re: Eliminate DONE state?

2009-09-18 Thread PT
Matt Lundin mdl at imapmail.org writes: Not that I am aware of. Lots of functionality in org depends on inactive TODOs. For instance, if you don't have a DONE state, then scheduled items will remain on your agenda forever, even if they aren't marked as a TODO. Okay, it's not a big deal. I

[Orgmode] Re: schedule tasks

2009-09-07 Thread PT
William Xu william.xwl at gmail.com writes: Hi folks, I'm trying to do this: 1. schedule a TODO on THIS_DAY 2. before THIS_DAY, don't show it in global todo list. So I have: (setq org-agenda-todo-ignore-scheduled t) 3. on(and after when not done) THIS_DAY, show it

[Orgmode] Re: Stuck in a folded section when subtree is folded

2009-09-07 Thread PT
PT spamfilteraccount at gmail.com writes: If a header has some text content under it and the cursor is in the text then pressing TAB folds the content, but it doesn't change the cursor position, so the cursor is stuck in the folded part and, for example, beginning-of-line doesn't work, you

[Orgmode] Re: RSI

2009-09-07 Thread PT
Daniel Martins danielemc at gmail.com writes: Sticky keys takes some getting used to. It makes every modifier key work a little like caps lock. Sounds horrible, doesn't it? Well, it's not really. Basically, if you press control once, it locks control down for the next keystroke only, after

[Orgmode] Re: Stuck in a folded section when subtree is folded

2009-09-06 Thread PT
Carsten Dominik carsten.dominik at gmail.com writes: Have you customized the variable org-cycle-emulate-tab? No, it's nil. It's org 6.30, btw. ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list.

[Orgmode] Re: Stuck in a folded section when subtree is folded

2009-09-06 Thread PT
Carsten Dominik carsten.dominik at gmail.com writes: Wrong answer: The correct answer would have been: Yes, it is nil! Because the default value is t!. The default value means that TAB will not at all fold an entry when the cursor is not in the headline. Maybe this is really the

[Orgmode] Stuck in a folded section when subtree is folded

2009-09-05 Thread PT
If a header has some text content under it and the cursor is in the text then pressing TAB folds the content, but it doesn't change the cursor position, so the cursor is stuck in the folded part and, for example, beginning-of-line doesn't work, you can only get out from the folded part if you

[Orgmode] FILETAGS documentation clarification

2009-09-04 Thread PT
I tried FILETAGS for the first time and it failed to work and it took a while until I found out why. I assumed orgfiles are scanned dynamically for filetags, so I don't have to do anything just write it into the file. Turned out I had to reload the file as well, because org cached filetag info.

[Orgmode] Re: FILETAGS documentation clarification

2009-09-04 Thread PT
Matt Lundin mdl at imapmail.org writes: Any time you change one of the in-buffer settings line (e.g., #+FILETAGS), you need to refresh the buffer by hitting C-c C-c on the new or updated line. You don't have to reload the file. Here's the information in the manual:

[Orgmode] Re: Making an org file more readable

2009-09-03 Thread PT
Carsten Dominik carsten.dominik at gmail.com writes: I have just pushed a modification so that you can, after pulling from git, set org-cycle-separator-lines to a negative number. If you set it to -N, N empty lines will be required in order to get a separation. But, if there are enough

[Orgmode] Usability idea: color coding items with priorities in agenda

2009-09-01 Thread PT
The agenda list would be easier to parse with the eye if each priority level (A, B, C) had its own face. This way the user could optionally set a background color for these priorities, so priority items would stand out from the todo list. ___

[Orgmode] Re: RSI

2009-09-01 Thread PT
Samuel Wales samologist at gmail.com writes: One thing that you can do is to ensure that you have a keyboard that has modifier keys on both sides. You should pound a new habit into your cerebellum: use two hands. ... Many (maybe even most) will find this idea strange. But I urge all

[Orgmode] Re: Usability idea: color coding items with priorities in agenda

2009-09-01 Thread PT
Nick Dokos nicholas.dokos at hp.com writes: You missed the *other* variable C-h v org-agenda-fontify-priorities RET Damn! Org is again a step ahead of me. :D Thanks. ___ Emacs-orgmode mailing list Remember: use `Reply All' to send

[Orgmode] Re: Making an org file more readable

2009-08-24 Thread PT
Nick Dokos nicholas.dokos at hp.com writes: You *can* get an empty line between two headers by having two empty lines at the end of the first section: the first empty line is considered part of the section and is folded with it, but the second one remains. E.g. One more thing for those who

[Orgmode] Re: Preventing (or mitigating) accidental deletion in org-mode

2009-08-23 Thread PT
Nick Bell mail at nickbell.org writes: Dear List, Org-mode is great and I'd like to commit to it. However, I'm held back by the apparent fragility of data stored in org-files. For example, it's easy to delete entire folded trees of data with just a couple of keystrokes or a mouse

[Orgmode] Making an org file more readable

2009-08-23 Thread PT
My main gripe with org is that the appearance is too crowded. Even if the header lines have different colors the individual projects and sections I keep in the file have no visual separation between them. For example, sometimes I'd like to add empty lines after a header, so there is some visual

[Orgmode] Re: Making an org file more readable

2009-08-23 Thread PT
Nick Dokos nicholas.dokos at hp.com writes: You *can* get an empty line between two headers by having two empty lines at the end of the first section: the first empty line is considered part of the section and is folded with it, but the second one remains. E.g. For some reason, I didn't try

[Orgmode] Feature idea: Automatic clocking

2009-08-21 Thread PT
I just started using clocking and it seems really useful. It occured me it could also be done automatically for certain tasks which are performed in the org buffer. For example, I work on some text which I keep in an org subtree, the branches of the subtree hold the chapters, etc. If the main

[Orgmode] Org suggestion: option which allows moving subtrees freely

2009-08-11 Thread PT
Often I want to move an item or a subtree to an other location with M-up/down and I get the message Cannot move past superior level. I think there could be an option allowing this behavior. In practice I found sometimes it would be quicker and easier to move stuff under a different heading in the

[Orgmode] Re: Org suggestion: option which allows moving subtrees freely

2009-08-11 Thread PT
Carsten Dominik carsten.dominik at gmail.com writes: I do M-left M-up M-right to get past a parent. When moving down, M-left M-down M-right will get you to the end of that subtree, but otherwise it works just fine. It seems like something which org could also do if the user sets the

[Orgmode] Re: Org suggestion: option which allows moving subtrees freely

2009-08-11 Thread PT
PT spamfilteraccount at gmail.com writes: So it would spare at least an M-left for the user which doesn't seem much, but small things add up in the long run. Maybe the M-right part wouldn't be too hard either. If above the moved up header (which is now at the same level as its previous