[Orgmode] undo grouping

2009-02-25 Thread Martin Pohlack
Hi All, I hacked together a small workaround for the ungrouped undo-list entries (undo works only characterwise in org-mode, but usually chunks together several key strokes in, e.g., text-mode). I have this piece of code in my emacs startup script.

[Orgmode] undo grouping

2009-02-25 Thread Martin Pohlack
[resent, as the previous attempts didn't make it to the list ...] Hi All, I hacked together a small workaround for the ungrouped undo-list entries (undo works only characterwise in org-mode, but usually chunks together several key strokes in, e.g., text-mode). I have this piece of code in my

Re: [Orgmode] undo grouping

2009-02-25 Thread Martin Pohlack
[...] (undo works only characterwise in org-mode, but usually chunks together ^ emacs several key strokes in, e.g., text-mode). ___ Emacs-orgmode mailing list Remember: use `Reply All' to send

Re: [Orgmode] Re: Wrong type argument: sequencep, quote

2009-02-25 Thread Carsten Dominik
On Feb 24, 2009, at 4:05 PM, Ross A. Laird wrote: Carsten Dominik domi...@science.uva.nl writes: What is the value or org-drawers? What is your #+OPTIONS line? This is likely the source of my problem. I had trouble finding the proper way to configure the drawer. The documentation says

Re: [Orgmode] undo grouping

2009-02-25 Thread Carsten Dominik
Excellent, thank you very much. I have installed this code (not using advice, but directly). - Carsten On Feb 24, 2009, at 9:22 PM, Martin Pohlack wrote: Hi All, I hacked together a small workaround for the ungrouped undo-list entries (undo works only characterwise in org-mode, but

Re: [Orgmode] ascii export of url part of links possible?

2009-02-25 Thread Carsten Dominik
On Feb 24, 2009, at 9:18 PM, Samuel Wales wrote: I didn't find a way to have export as ASCII export the URL of links. With a link whose URL is google's and whose label is google main page, org exports: try [google main page]. I prefer this: try http://google.com (google main page). I

Re: [Orgmode] scheduled item taking time from inactive time stamp

2009-02-25 Thread Carsten Dominik
On Feb 24, 2009, at 7:00 PM, Samuel Wales wrote: Would it make sense at all to provide a user variable to turn off the agenda's scanning of headlines for times? I wonder if that would (slightly) speed it up also? We have now such a variable, `org-agenda-search-headline-for time', but no,

Re: [Orgmode] org-annotation mode version 0.4

2009-02-25 Thread Carsten Dominik
Hi Daniel, thanks. I installed the new version in the contrib directory. An org version of the docs can go up in Worg in the directory org-contrib, with a link to it in org-contrib/index.el Maybe the faq can go up on Worg as well, same directory? - Carsten On Feb 24, 2009, at 10:05 PM,

Re: [Orgmode] [tiny patch] calling org-agenda from eshell command line

2009-02-25 Thread Carsten Dominik
Applied, thanks. - Carsten On Feb 24, 2009, at 4:11 PM, Eric Schulte wrote: Hi, The attached patch makes the prefix argument ARG to `org-agenda' optional so that it is easier to call from the eshell command line. There may be some reason not to make this change, but so far I am enjoying it.

Re: [Orgmode] Suppressing some header numbers during export

2009-02-25 Thread Carsten Dominik
On Feb 24, 2009, at 8:32 PM, Jeff Putsch wrote: I have an org-mode file that has several headers: * Revision History * Approvals * Introduction ... * Overall Description ... * System Features ... That when exporting numbers all headers. This behavior is expected. I'd like to prevent

Re: [Orgmode] org-agenda-filter-by-tag doesn't work with custom effort property

2009-02-25 Thread Carsten Dominik
On Feb 24, 2009, at 3:52 PM, Daniel Clemente wrote: Hi, I would like to contribute 1 byte to org-mode; it's an a: --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -4407,7 +4407,7 @@ to switch to narrowing. (lambda (x) (if (cdr x) (char-to-string (cdr x)) ))

Re: [Orgmode] scheduled item taking time from inactive time stamp

2009-02-25 Thread Eric S Fraga
Carsten Dominik writes: On Feb 24, 2009, at 7:00 PM, Samuel Wales wrote: Would it make sense at all to provide a user variable to turn off the agenda's scanning of headlines for times? I wonder if that would (slightly) speed it up also? We have now such a variable,

[Orgmode] Using Git to update more than one machine (one without network access)

2009-02-25 Thread Paul Mead
I recognize this is more a git question that org-mode, but... I'm trying to use git to keep my org-mode version up to date on my personal and work laptops. The only problem is that my work laptop has a firewall on it which does not allow git traffic to pass. I use a repo on a usb drive to keep

Re: [Orgmode] Using Git to update more than one machine (one without network access)

2009-02-25 Thread David Thole
Paul, The way I've accomplished the task you're talking about is instead of trying to push and pull *to* the work machine, I use another machine with less restrictive firewalls to push and pull from. This is how I do it... Work - Web Server - Home The web server acts as my USB Key, and I

Re: [Orgmode] Using Git to update more than one machine (one without network access)

2009-02-25 Thread Nick Dokos
Paul Mead paul.d.m...@gmail.com wrote: I'm trying to use git to keep my org-mode version up to date on my personal and work laptops. The only problem is that my work laptop has a firewall on it which does not allow git traffic to pass. snip There is another possibility that you might

[Orgmode] Re: Using Git to update more than one machine (one without network access)

2009-02-25 Thread Paul Mead
David Thole dthole at gmail.com writes: Paul, The way I've accomplished the task you're talking about is instead of trying to push and pull *to* the work machine, I use another machine with less restrictive firewalls to push and pull from. This is how I do it... Work - Web Server -

[Orgmode] Re: Using Git to update more than one machine (one without network access)

2009-02-25 Thread Paul Mead
Nick Dokos nicholas.dokos at hp.com writes: There is another possibility that you might want to investigate: if there is a SOCKS proxy server available at work, you can arrange to pass git traffic through that. Nice idea, sadly even the identity of the proxy server is hidden, so I guess

Re: [Orgmode] org-agenda-filter-by-tag doesn't work with custom effort property

2009-02-25 Thread Daniel Clemente
El dc, feb 25 2009, Carsten Dominik va escriure: On Feb 24, 2009, at 3:52 PM, Daniel Clemente wrote: Hi, I would like to contribute 1 byte to org-mode; it's an a: --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -4407,7 +4407,7 @@ to switch to narrowing. (lambda (x)

Re: [Orgmode] Using Git to update more than one machine (one without network access)

2009-02-25 Thread Ian Barton
I use a repo on a usb drive to keep my emacs init files in sync, but have absolutely no idea how to do this for my org-mode files. In essence, I'm trying to first pull changes from //repo.or.cz to my laptop, and then either have a second repo on the usb drive which I can pull changes onto, or

[Orgmode] Re: Using Git to update more than one machine (one without network access)

2009-02-25 Thread Paul Mead
Ian Barton lists at manor-farm.org writes: Use git clone to create a repo on your usb stick. Pull changes from Carsten' git repo to your usb stick. Pull changes from your usb stick to both your work and home computers. In other words your usb stick is your own master repo. It works!

Re: [Orgmode] org-agenda-filter-by-tag doesn't work with custom effort property

2009-02-25 Thread Carsten Dominik
On Feb 25, 2009, at 6:32 PM, Daniel Clemente wrote: El dc, feb 25 2009, Carsten Dominik va escriure: On Feb 24, 2009, at 3:52 PM, Daniel Clemente wrote: Hi, I would like to contribute 1 byte to org-mode; it's an a: --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -4407,7 +4407,7 @@

[Orgmode] Re: Using Git to update more than one machine (one without network access)

2009-02-25 Thread Bernt Hansen
Paul Mead paul.d.m...@gmail.com writes: Ian Barton lists at manor-farm.org writes: Use git clone to create a repo on your usb stick. Pull changes from Carsten' git repo to your usb stick. Pull changes from your usb stick to both your work and home computers. In other words your usb

[Orgmode] Re: Using Git to update more than one machine (one without network access)

2009-02-25 Thread Bernt Hansen
Paul Mead paul.d.m...@gmail.com writes: Bernt Hansen bernt at norang.ca writes: I suggest you put bare repositories on the USB stick. ... $ git push # update any existing branches on the usb stick On your work machine just clone the USB repo $ git clone /path/to/usb/org-mode.git

[Orgmode] Re: Using Git to update more than one machine (one without network access)

2009-02-25 Thread Paul Mead
Bernt Hansen bernt at norang.ca writes: snip to update the stick with those commits. At work you clone the stick (once) and origin at work is the usb stick. Then you git fetch or git pull at work to get commits from the usb stick as needed. HTH, -Bernt Bernt, many thanks. I'll need to

[Orgmode] unicorn

2009-02-25 Thread Raimund Kohl-Füchsle
Hello there, just a (stupid?) question: On the orgmode.org site there is the image of a unicorn. Is this the official Logo for org-mode? I (finaly!) plan on writing and publishing a little org-mode Manual and I would find it nice to have a logo that connects to the project of org-mode. Oh, and

[Orgmode] org-bbdb: help

2009-02-25 Thread Memnon Anon
Hi! I like to keep track of birthdays of people I know. For the last 6 months, I've been keeping a birthday section in my organizer.org, having multiple lines like this one: %%(diary-anniversary 1 1 ) Geburtstag Foo: %d Jahre. But, since I started with emacs, I wanted to get used to the

[Orgmode] Re: bug? in orgstruct-mode

2009-02-25 Thread Austin Frank
On Sun, Feb 22 2009, Carsten Dominik wrote: yes, this is something I have been missing myself. Glad it wasn't just me. I feel guilty if I'm the only one requesting the feature. Now that you've implemented it, are you using orgstruct++-mode? orgstruct-mode is a mode that steals away bindings