Re: [Orgmode] Feature Request: org-agenda-set-category

2007-09-06 Thread Bastien
T. V. Raman [EMAIL PROTECTED] writes: Could we perhaps introduce a special property that is used by org-agenda to build the left column? What about: :PROPERTIES: :CATEGORY: general :ARCHIVE: archives:: :END: as a future replacement for #+CATEGORY and #+ARCHIVE? -- Bastien

Re: [Orgmode] canonical modifications to makefile for ubuntu feisty emacs 22.1.1?

2007-09-06 Thread Ian Barton
At some point, I made a mess of things in upgrading org-mode; stupidly I sometimes modified the makefile so as to install the local lisp files to a local lisp tree ~/emacs/site-lisp (loaded by my .emacs) and sometimes so that they ended up in /usr/local/share/emacs/site-lisp. My bad.

[Orgmode] Re: Feature Request: org-agenda-set-category

2007-09-06 Thread Christian Egli
T. V. Raman raman at users.sf.net writes: I'm perfectly happy to do this with properties rather than categories. But I suggested categories because that is what agenda views are using at present in the left column. Could we perhaps introduce a special property that is used by org-agenda to

[Orgmode] running remember with emacsclient - how to get a new frame

2007-09-06 Thread pete phillips
Hi I want to bind a keyboard key to run /usr/bin/emacsclient.emacs-snapshot -e (remember) so that whatever I am doing I can easily and quickly add a note to my org file using remember. However, when I run /usr/bin/emacsclient.emacs-snapshot -e (remember) from the

[Orgmode] Re: running remember with emacsclient - how to get a new frame

2007-09-06 Thread Tassilo Horn
pete phillips [EMAIL PROTECTED] writes: Hi Pete, Is there anything I can pass to emacs using emacsclient which will force it to open up a new frame on my current desktop ? (and preferably close the frame once I have hit ^C^C) I think this should work. (add-hook 'server-switch-hook

Re: [Orgmode] running remember with emacsclient - how to get a new frame

2007-09-06 Thread Jason F. McBrayer
pete phillips [EMAIL PROTECTED] writes: Hi I want to bind a keyboard key to run /usr/bin/emacsclient.emacs-snapshot -e (remember) I define this function in my .emacs: (defun my-remember nil (progn (select-frame (make-frame '((name . *Remember*) )))

[Orgmode] howto fine tune agenda view

2007-09-06 Thread Gijs Hillenius
Hi! With so many options in this org forest, it is easy to miss the tree I'm looking for ... Would appreciate it if someone could kick me in the right direction, apologies for the length of my question: I use org-mode to keep track of items i'm supposed to write and track these until i've

[Orgmode] org priority cycling - removing priorities

2007-09-06 Thread Rick Moynihan
Every now and then I find myself mispressing SHIFT-up/SHIFT-down on an outline and assigning a priority to it. This then often leads me to navigating the point to the priority to delete it manually. It would be great if SHIFT-up/SHIFT-down would cycle through: [#A] [#B] [#C] _ - blank (i.e.

Re: [Orgmode] howto fine tune agenda view

2007-09-06 Thread Gijs Hillenius
-- Replying to my own post without quoting it: I should add, that I *now* understand this is a FAQ and it could potentially be solved by adding a timestamp instead of scedule/deadline. But all of my WRITE items come with deadlines... I believe (I'm trying it out now) that having a DEADLINE

Re: [Orgmode] org priority cycling - removing priorities

2007-09-06 Thread William Henney
Hi Rick On 9/6/07, Rick Moynihan [EMAIL PROTECTED] wrote: Every now and then I find myself mispressing SHIFT-up/SHIFT-down on an outline and assigning a priority to it. This then often leads me to navigating the point to the priority to delete it manually. In the meantime, you can always

Re: [Orgmode] running remember with emacsclient - how to get a new frame

2007-09-06 Thread pete phillips
Jason == Jason F McBrayer [EMAIL PROTECTED] writes: Jason I define this function in my .emacs: Many thanks for that. It works perfectly. I have function key F9 bound in xbindkeys to run the remember command, and after ^C the frame disappears. Superb. Pete

Re: [Orgmode] Feature request: navigate history of folding views

2007-09-06 Thread William Henney
Hi Carsten On 9/4/07, Carsten Dominik [EMAIL PROTECTED] wrote: On Sep 3, 2007, at 19:23, William Henney wrote: On 7/11/07, Eddward DeVilla [EMAIL PROTECTED] wrote: For my uses, what I would love is a way to have org-mode remember how a subtree was folded so I could hide a subtree and then

[Orgmode] non-destructive navigation/searching of org files (was Feature request: navigate history of folding views)

2007-09-06 Thread William Henney
[Subject line changed to reflect broadened scope] On 9/6/07, William Henney [EMAIL PROTECTED] wrote: One way that this could be improved (without implementing a history mechanism) would be if sparse trees were always created in indirect buffers, so the original view could be recovered. Would

[Orgmode] Using org-store-link in an indirect buffer

2007-09-06 Thread William Henney
Currently, one cannot use org-store-link in an indirect buffer. The stack trace is given below. Would it be possible to fix this? Cheers Will Debugger entered--Lisp error: (error Cannot link to a buffer which is not visiting a file) signal(error (Cannot link to a buffer which is not visiting

[Orgmode] buffer-locale setting of locale for day names in time-stamps

2007-09-06 Thread William Henney
Hi list I am using org mode to publish HTML pages, some of which are for an English-speaking audience and some of which are for a Spanish-speaking audience. Therefore, I would like the day-of-week names in the default org time-stamps to be localised appropriately. However, the only way I know to

[Orgmode] Navigation problem - 5.08

2007-09-06 Thread Bernt Hansen
Hi Carsten, I've been running into what I think is a bug over the last few days. I normally live in the agenda for today with my todo tasks displayed and ordered by priority. I've noticed that sometimes (rarely) using SPACE or TAB on an entry jumps to my single org file but in the wrong place.

Re: [Orgmode] buffer-locale setting of locale for day names in time-stamps

2007-09-06 Thread Bastien
William Henney [EMAIL PROTECTED] writes: Is there any way to have buffer-local (or file-local) setting of the locale. What about the #+LANGUAGE option? See (info (Org)Export options) for details. -- Bastien ___ Emacs-orgmode mailing list

[Orgmode] blank lines and keystrokes for org remember templates

2007-09-06 Thread Scott Jaderholm
Hi, 1. When I use remember with a template I get a blank line after the text that I type. My template looks like this: (setq org-remember-templates '((?l * TODO %? ~/Documents/org/life.org New Tasks))) If I write TODO something I get a blank line after it in my org file even though I

Re: [Orgmode] running remember with emacsclient - how to get a new frame

2007-09-06 Thread Scott Jaderholm
On 9/6/07, Jason F. McBrayer [EMAIL PROTECTED] wrote: I define this function in my .emacs: (defun my-remember nil (progn (select-frame (make-frame '((name . *Remember*) ))) (raise-frame) (remember))) Jason, This is great. How would you make it so that the

Re: [Orgmode] running remember with emacsclient - how to get a new frame

2007-09-06 Thread John Wiegley
Scott Jaderholm [EMAIL PROTECTED] writes: On 9/6/07, Jason F. McBrayer [EMAIL PROTECTED] wrote: I define this function in my .emacs: (defun my-remember nil (progn (select-frame (make-frame '((name . *Remember*) ))) (raise-frame) (remember))) Jason, This

Re: [Orgmode] blank lines and keystrokes for org remember templates

2007-09-06 Thread John Wiegley
Scott Jaderholm [EMAIL PROTECTED] writes: If I write TODO something I get a blank line after it in my org file even though I didn't put a newline when using remember. Even stranger is that it *doesn't* put a blank line if you have multiple lines of text in your remember block. I'd vote that

Re: [Orgmode] buffer-locale setting of locale for day names in time-stamps

2007-09-06 Thread William Henney
Hi Bastien On 9/6/07, Bastien [EMAIL PROTECTED] wrote: William Henney [EMAIL PROTECTED] writes: Is there any way to have buffer-local (or file-local) setting of the locale. What about the #+LANGUAGE option? Yes, I use this option. However, this value is not respected by the time-stamps,