Re: [O] how to insert a source template

2011-04-11 Thread Jambunathan K
Piter_ writes: > Hi all. > I have no big knowlege of elisp. But I hope some one already done this. > I want to make a key binding which would insert a source code template > like this (I've got tired to type it every time): > > #+source: > #+begin_src > > #+end_src http://orgmode.org/manual/Easy

Re: [O] Occurance property, or some similar name?

2011-04-11 Thread theo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, On 12/04/2011 00:42, Christopher Allan Webber wrote: > I was once one of the many people who apparently originally > misunderstood what "SCHEDULED" meant, and used to set it to like, an > appointment time. That's what I do. Maybe I lack backg

[O] Bug: Backtrace [7.5 (release_7.5.135.g7021f.dirty)]

2011-04-11 Thread Dave Abrahams
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list.

Re: [O] Completing with anything

2011-04-11 Thread Stefan Monnier
> Because this one return (list start end completion-choies), and does not > do anything else. I can't do it myself using the current completion > mechanism, IIUC. Hmm... good point, doing it in completion-choices is not reliable, tho using as completion table something like: (lambda (string pred

Re: [O] LaTeX export: inline markup underscore problem

2011-04-11 Thread Thomas S. Dye
Aloha Mauro, It appears that the new link type is not defined. Have you executed the source block, define-citep-link? Also, version 6.21 is probably too old for at least some of the LaTeX export. It is probably not worth the trouble to try to set things up for that version of Org-mode.

Re: [O] LaTeX export: inline markup underscore problem

2011-04-11 Thread Mauro Rovezzi
Hello Thomas, On Mon, Apr 11, 2011 at 6:58 PM, Thomas S. Dye wrote: > Aloha Mauro, > On my system I define a citep link: > > #+source: define-citep-link > #+begin_src emacs-lisp :results silent >     (org-add-link-type >      "citep" 'ebib >      (lambda (path desc format) >        (cond >       

[O] Hide / expand tags

2011-04-11 Thread Marcelo de Moraes Serpa
Hey list! Is it possible to hide tags? Rationale: Sometimes an item has so many tags, that it becomes kind of annoying visually. It'd be nice to have a command to hide/expand tags. What do you think? Cheers, Marcelo.

Re: [O] Reg Navigation keys in org mode presentation

2011-04-11 Thread Eric S Fraga
Kumar Sadhu writes: > Hi, > I have recently created a presentation in orgmode. Mouse click is used > to navigate through the bullet points. How can I have this > functionality with space key. That is, when I press space bar, I > should get next bullet point. > How can I do this by changing the ja

Re: [O] LaTeX export: inline markup underscore problem

2011-04-11 Thread Thomas S. Dye
Aloha Mauro, On my system I define a citep link: #+source: define-citep-link #+begin_src emacs-lisp :results silent (org-add-link-type "citep" 'ebib (lambda (path desc format) (cond ((eq format 'html) (format "(%s)" path)) ((eq format 'latex)

Re: [O] Problem with [xxx] inside a footnote

2011-04-11 Thread Alan L Tyree
On Mon, 11 Apr 2011 12:39:48 +0200 Giovanni Ridolfi wrote: > Alan L Tyree writes: > > > Hello Orgsters, > > > > [fn:1: Although this risk is usually negligible, bank cheques are > > not "the same as cash": see Sidney Raper Pty Ltd v Commonwealth > > Trading Bank of Australia [1975] 2 NSWLR 227;

[O] org-gnus-follow-link and nnimap-request-scan

2011-04-11 Thread Eden Cardim
After switching to using gnus mail splitting, following links to nnimap messages has become very slow. I'm fairly familiar with the gnus source, but not org-mode's as much, after wading a bit in the source I landed on ,[ org-gnus-follow-link ] |(gnus-activate-group group t) ` ,---

[O] Occurance property, or some similar name?

2011-04-11 Thread Christopher Allan Webber
I was once one of the many people who apparently originally misunderstood what "SCHEDULED" meant, and used to set it to like, an appointment time. It seems the appropriate thing for what I actually meant was to just put a timestamp anywhere in the entry and that works out well. A lot of people pu

[O] how to insert a source template

2011-04-11 Thread Piter_
Hi all. I have no big knowlege of elisp. But I hope some one already done this. I want to make a key binding which would insert a source code template like this (I've got tired to type it every time): #+source: #+begin_src #+end_src Thanks. Petro.

[O] Re: How to display a diary entry in agenda week view only "today"

2011-04-11 Thread Nick Dokos
Bernt Hansen wrote: > Nick Dokos writes: > > > Suvayu Ali wrote: > > > >> On Mon, 11 Apr 2011 14:55:24 +0200 > >> Niels Giesen wrote: > >> > >> > On Mon, Apr 11, 2011 at 1:57 PM, Rainer Stengele > >> > wrote: > >> > > Am 11.04.2011 10:36, schrieb Suvayu Ali: > >> > >> On Mon, 11 Apr 2011 08

Re: [O] Re: How to display a diary entry in agenda week view only "today"

2011-04-11 Thread Suvayu Ali
On Mon, 11 Apr 2011 10:55:28 -0400 Nick Dokos wrote: > Suvayu Ali wrote: > > > On Mon, 11 Apr 2011 14:55:24 +0200 > > Niels Giesen wrote: > > > > > date is a dynamically bound variable at the time of evaluation. > > > > > > > I have a question I have been meaning to ask for a long time. How

[O] Re: How to display a diary entry in agenda week view only "today"

2011-04-11 Thread Bernt Hansen
Nick Dokos writes: > Suvayu Ali wrote: > >> On Mon, 11 Apr 2011 14:55:24 +0200 >> Niels Giesen wrote: >> >> > On Mon, Apr 11, 2011 at 1:57 PM, Rainer Stengele >> > wrote: >> > > Am 11.04.2011 10:36, schrieb Suvayu Ali: >> > >> On Mon, 11 Apr 2011 08:52:52 +0200 >> > >> >> > >> %%(if (calendar

Re: [O] Re: How to display a diary entry in agenda week view only "today"

2011-04-11 Thread Niels Giesen
Or something like the following (not bullet-proof I guess): (defmacro test-diary-sexp (date &rest body) `(let ((date ,date)) ,@body)) (test-diary-sexp (calendar-current-date) (org-google-weather "De Bilt" "nl")) ... and in calendar-current-date lies your answer to the format question.

Re: [O] Re: How to display a diary entry in agenda week view only "today"

2011-04-11 Thread Nick Dokos
Suvayu Ali wrote: > On Mon, 11 Apr 2011 14:55:24 +0200 > Niels Giesen wrote: > > > On Mon, Apr 11, 2011 at 1:57 PM, Rainer Stengele > > wrote: > > > Am 11.04.2011 10:36, schrieb Suvayu Ali: > > >> On Mon, 11 Apr 2011 08:52:52 +0200 > > >> > > >> %%(if (calendar-date-equal date (calendar-curren

Re: [O] Re: How to display a diary entry in agenda week view only "today"

2011-04-11 Thread Suvayu Ali
On Mon, 11 Apr 2011 14:55:24 +0200 Niels Giesen wrote: > On Mon, Apr 11, 2011 at 1:57 PM, Rainer Stengele > wrote: > > Am 11.04.2011 10:36, schrieb Suvayu Ali: > >> On Mon, 11 Apr 2011 08:52:52 +0200 > >> > >> %%(if (calendar-date-equal date (calendar-current-date)) > >> (diary-sunrise-sunset))

Re: [O] Re: Completing with anything

2011-04-11 Thread Michael Markert
On 11 Apr 2011, Bastien wrote: > Julien Danjou writes: > >> On Sat, Apr 09 2011, Michael Markert wrote: >> >>> No, but if it's necessary (or helping) I'll do so. >> >> Well, since org-contacts is part of contrib I think it's not necessary, >> so I'll merge it as it is unless Bastien says I'm wron

Re: [O] LaTeX export: inline markup underscore problem

2011-04-11 Thread Mauro Rovezzi
On Mon, Apr 11, 2011 at 3:44 AM, Nick Dokos wrote: > Thomas S. Dye wrote: >> >> The code the OP cited passes desc to \cite{}.  The code I pointed to >> passes path to \cite{}.  It does this to get around the problem of >> escaped underscores, if I remember correctly.  In any case, I use this >> c

[PATCH] Re: [O] Re: SOLVED Bug: :clock-keep...not kept [7.5__078c01]

2011-04-11 Thread Giovanni Ridolfi
Bastien writes: > It is indeed fixed in the latest git version. Bastien, The :clock-keep option now works, thanks. There's a little bug in the Customize interface of clock-keep. The :clock-keep *t* option can't be selected with the Customize interface 'C-c c C ', since its value is 'nil'.

Re: [O] Custom agenda view for specific time intervals

2011-04-11 Thread Konrad Hinsen
Hi Bastien, >> Is there a way to create custom agenda views for specific time intervals, >> such as "May 2011" or "the month following the current month"? > > A combination of `org-agenda-start-day' and `org-agenda-span' should do. org-agenda-start-day is exactly what I was looking for, thanks!

Re: [O] Re: How to display a diary entry in agenda week view only "today"

2011-04-11 Thread Niels Giesen
date is a dynamically bound variable at the time of evaluation. On Mon, Apr 11, 2011 at 1:57 PM, Rainer Stengele wrote: > Am 11.04.2011 10:36, schrieb Suvayu Ali: >> On Mon, 11 Apr 2011 08:52:52 +0200 >> Rainer Stengele wrote: >> >>> Hi! >>> >>> In one of my org agenda files I have >>> >>> #+CAT

[O] Reg Navigation keys in org mode presentation

2011-04-11 Thread Kumar Sadhu
Hi, I have recently created a presentation in orgmode. Mouse click is used to navigate through the bullet points. How can I have this functionality with space key. That is, when I press space bar, I should get next bullet point. How can I do this by changing the javascript? If its not easy to do th

[O] outline numbering (similar to Orgmode manual)

2011-04-11 Thread Erwin Panen
Hi everyone, Is there any (easy) way to convert headlines to numbering? What I'm thinking of is similar to the Orgmode manual, where you have the numbered structure representing sections/paragraphs etc. Reasoning behind this: - easily export pdf or printed report material - orderly (sequential

[O] Re: How to display a diary entry in agenda week view only "today"

2011-04-11 Thread Rainer Stengele
Am 11.04.2011 10:36, schrieb Suvayu Ali: > On Mon, 11 Apr 2011 08:52:52 +0200 > Rainer Stengele wrote: > >> Hi! >> >> In one of my org agenda files I have >> >> #+CATEGORY: Sunrise >> &%%(diary-sunrise-sunset) >> >> Now, when I am in weekly agenda view the sunrise-sunset shows under >> every day.

Re: [O] Problem with [xxx] inside a footnote

2011-04-11 Thread Giovanni Ridolfi
Alan L Tyree writes: > Hello Orgsters, > > [fn:1: Although this risk is usually negligible, bank cheques are not > "the same as cash": see Sidney Raper Pty Ltd v Commonwealth Trading > Bank of Australia [1975] 2 NSWLR 227; Justin Seward Pty Ltd v > Commissioner of Rural and Industries Bank > (198

Re: [O] Re: Completing with anything

2011-04-11 Thread Bastien
Julien Danjou writes: > On Sat, Apr 09 2011, Michael Markert wrote: > >> No, but if it's necessary (or helping) I'll do so. > > Well, since org-contacts is part of contrib I think it's not necessary, > so I'll merge it as it is unless Bastien says I'm wrong. You're right. No need for FSF copyri

Re: [O] Recurring events with ranges broken

2011-04-11 Thread Radosław Grzanka
Hello, recurring ranges with timestamps are not properly recognized in the agenda. This wont work: <2011-04-07 Thu +1w>--<2011-04-20 Wed> uh! Has it ever worked ?-) Could you please give us an idea approximately when it was working? Could you also, please, explain to me what's the rationale be

Re: [O] Re: Completing with anything

2011-04-11 Thread Julien Danjou
On Sat, Apr 09 2011, Michael Markert wrote: > No, but if it's necessary (or helping) I'll do so. Well, since org-contacts is part of contrib I think it's not necessary, so I'll merge it as it is unless Bastien says I'm wrong. Thanks. -- Julien Danjou ❱ http://julien.danjou.info pgp2pZCu47Ffu

Re: [O] Re: Completing with anything

2011-04-11 Thread Julien Danjou
On Sun, Apr 10 2011, Stefan Monnier wrote: >> So now, I wonder: wouldn't it be a good idea to add a call to >> `expand-abbrev' just after `completion-at-point' is being called? > > After completing an abbrev name, yes, but otherwise I don't think so. > I.e. why don't you add such a call to > org-c

Re: [O] How to display a diary entry in agenda week view only "today"

2011-04-11 Thread Suvayu Ali
On Mon, 11 Apr 2011 08:52:52 +0200 Rainer Stengele wrote: > Hi! > > In one of my org agenda files I have > > #+CATEGORY: Sunrise > &%%(diary-sunrise-sunset) > > Now, when I am in weekly agenda view the sunrise-sunset shows under > every day. This is kind of too much line noise and distracting

Re: [O] Recurring events with ranges broken

2011-04-11 Thread Giovanni Ridolfi
"Philipp M." writes: Hi, Philipp, > In the recent org-mode realease something could ou be more precise, please? > recurring ranges with timestamps > are not properly recognized in the agenda. > This wont work: > <2011-04-07 Thu +1w>--<2011-04-20 Wed> uh! Has it ever worked ?-) Could you plea