Christian Egli <[EMAIL PROTECTED]> writes:
> Attached is an updated version of org2pocketMod. As before you need to
> have the pdfjam tools installed. Also you might want to add (setq
> cal-tex-diary t) to your .emacs, so diary entries actually show up in
> your printout.
Works fine -- great stuf
Christian Egli <[EMAIL PROTECTED]> writes:
> I haven't sent out a updated version. I have some updates sitting on my hard
> drive at home. On top of that I'd like to get some nice LaTeX export of the
> agenda included in the printout. I sent a proposal for the LaTeX to Bastien
> and
> hope that
This works just fine for me. Are you sure you have the exact same
kind of space? same number of space characters, check for tabulators
etc?
- Carsten
On Oct 25, 2007, at 2:59 PM, Rainer Stengele wrote:
It looks like it is not possible to use a destination headline with
blanks between wo
Seweryn Kokot <[EMAIL PROTECTED]> writes:
>>
>> (defun local-org-insert-stars ()
>> (interactive)
>> (when (looking-back "^ +" (point-at-bol))
>> (save-excursion
>> (while (search-backward " " (point-at-bol) t)
>> (replace-match "*" nil t
>> (org-self-insert-command 1))
>
It looks like it is not possible to use a destination headline with blanks
between words in org-remember-templates.
Example below: This one will fail to find the headline "Eingang - TODOS".
It will instead find "Eingang" which is an earlier headline.
'(org-remember-templates '(
Hi Carsten
Carsten Dominik gmail.com> writes:
> Hi Christian,
>
> do you have a link to the updated version of your Makefile? Cannot
> find one in the tread...
I haven't sent out a updated version. I have some updates sitting on my hard
drive at home. On top of that I'd like to get some nic
"Piotr Zielinski" <[EMAIL PROTECTED]> writes:
> On 25/10/2007, Seweryn Kokot <[EMAIL PROTECTED]> wrote:
>
>> A minor inconvenience is a warning when compiling the code
>
> First, here's the version after Bastien's and Carsten's comments:
>
> (defun local-org-insert-stars ()
> (interactive)
> (
On Oct 25, 2007, at 2:11 PM, Piotr Zielinski wrote:
On 25/10/2007, Seweryn Kokot <[EMAIL PROTECTED]> wrote:
A minor inconvenience is a warning when compiling the code
First, here's the version after Bastien's and Carsten's comments:
(defun local-org-insert-stars ()
(interactive)
(when
"Piotr Zielinski" <[EMAIL PROTECTED]> writes:
> This is what I came up with after following the suggestion from the
> manual, but it looks complicated to me, so I don't really like it:
>
> (defun local-org-insert-stars ()
> (interactive)
> (when (looking-back "^ +" (point-at-bol))
> (save-
On Oct 25, 2007, at 1:53 PM, Seweryn Kokot wrote:
"Piotr Zielinski" <[EMAIL PROTECTED]> writes:
which of course doesn't normally work, hence this elisp code.
(defun local-org-insert-stars ()
(interactive)
(when (looking-back "^ *" (point-at-bol))
(replace-string " " "*" nil (point-at
On 25/10/2007, Seweryn Kokot <[EMAIL PROTECTED]> wrote:
> A minor inconvenience is a warning when compiling the code
First, here's the version after Bastien's and Carsten's comments:
(defun local-org-insert-stars ()
(interactive)
(when (looking-back "^ +" (point-at-bol))
(replace-string
Carsten Dominik wrote:
> So, does everybody agree that I should remove the class from the divs
> again?
Not at all. I think there should definitely be classes on the divs
signifying the level. Also, toc should have a class - possibly only in
addition an id, that tells that this is the main front p
"Piotr Zielinski" <[EMAIL PROTECTED]> writes:
> which of course doesn't normally work, hence this elisp code.
>
> (defun local-org-insert-stars ()
> (interactive)
> (when (looking-back "^ *" (point-at-bol))
> (replace-string " " "*" nil (point-at-bol) (point)))
> (insert "*"))
>
> (defin
Carsten Dominik <[EMAIL PROTECTED]> writes:
Hi Carsten,
> There is a lot of code happening between the moment of the match, and
> the replacement. So far none of this code seems to have had the
> effect of changing the match data, I have been careful to avoid this.
> However, in your case it see
On 10/24/07, Carsten Dominik <[EMAIL PROTECTED]> wrote:
> So, does everybody agree that I should remove the class from the divs
> again?
>
Wouldn't classes make formatting more flexible? If I understand
correctly, Mike Newman's proposal will require all formatting to be
hardcoded into org.el? I'd
On Oct 25, 2007, at 12:15 PM, Piotr Zielinski wrote:
Hi,
Here's a small piece of elisp code that might be useful to some of
you.
Pressing '*' now inserts '*' as before, but if there are only spaces
between the beginning of the current line and the point, then all of
them are converted to st
There is a lot of code happening between the moment of the match, and
the
replacement. So far none of this code seems to have had the effect of
changing the match data, I have been careful to avoid this. However,
in your case it seems that some internal code does change it.
I believe the foll
Hi Piotr,
"Piotr Zielinski" <[EMAIL PROTECTED]> writes:
> (defun local-org-insert-stars ()
> (interactive)
> (when (looking-back "^ *" (point-at-bol))
^
^
This should be "+", otherwise you get a message saying "Replaced 0
occurrence" when
Bastien <[EMAIL PROTECTED]> writes:
Hi Bastien,
> Mhh... strange, I still cannot reproduce here with a minimal config.
> Can you debug step by step in this case?
It fails in line 13497 of org.el (the call to replace-match). Here's
the edebug output so far.
--8<---cut here-
Hi,
Here's a small piece of elisp code that might be useful to some of you.
Pressing '*' now inserts '*' as before, but if there are only spaces
between the beginning of the current line and the point, then all of
them are converted to stars. Useful for inserting new headlines.
Longer explanaiti
Tassilo Horn <[EMAIL PROTECTED]> writes:
> Yes. I even get it with emacs -Q and only the two settings
>
> (setq org-use-fast-todo-selection t
> org-todo-keywords '((sequence "TODO(t)" "STARTED(s)" "WAITING(w)"
> "|" "DONE(d)" "DEFERRED(f)"
> "CANCELLED(c
Bastien <[EMAIL PROTECTED]> writes:
Hi Bastien,
>> I didn't follow the org development for the last few weeks, so maybe
>> this is no bug but a misconfiguration by me.
>
> What version of Org are you using?
>
> I cannot reproduce your problem here with latest Org 5.13e.
Same here.
>> When I wan
Carsten Dominik <[EMAIL PROTECTED]> writes:
Hi Carsten,
> I cannot reproduce this.
Hm, I use a Emacs checkout from this morning which comes with org 5.13e,
but I noticed that behavior earlier.
I can reproduce the problem like this:
1. emacs -Q
2. Switch to *scratch* and eval
(setq org-use
Hi Tassilo,
Tassilo Horn <[EMAIL PROTECTED]> writes:
> I didn't follow the org development for the last few weeks, so maybe
> this is no bug but a misconfiguration by me.
What version of Org are you using?
I cannot reproduce your problem here with latest Org 5.13e.
> When I want to create a
I cannot reproduce this.
- Carsten
On Oct 25, 2007, at 11:05 AM, Tassilo Horn wrote:
Hi,
I didn't follow the org development for the last few weeks, so maybe
this is no bug but a misconfiguration by me. Anyway, I've set
org-use-fast-todo-selection t
org-todo-keywords '((sequence "TO
Hi,
I didn't follow the org development for the last few weeks, so maybe
this is no bug but a misconfiguration by me. Anyway, I've set
org-use-fast-todo-selection t
org-todo-keywords '((sequence "TODO(t)" "STARTED(s)" "WAITING(w)"
"|" "DONE(d)" "DEFERRED(f)" "CAN
26 matches
Mail list logo