harset="utf-8"
> MIME-Version: 1.0
> Content-Transfer-Encoding: 7bit
> Subject: [Orgmode] Re: Clean capture from command line?
> Date: Thu, 18 Nov 2010 22:32:53 -
> From: Allen S. Rout
> X-Patchwork-Id: 390
> Message-Id: <874obebkqi@ufl.edu>
> To:
Friedrich Delgado writes:
> I use zsh and I already use this:
>
> ,[ ~/bin/uriescapepwd.pl ]
> #!/usr/bin/perl -w
> use URI::Escape qw/ uri_escape uri_escape_utf8 /;
> use Cwd qw/getcwd abs_path/;
> $pwd = abs_path(getcwd);
> print uri_escape_utf8($pwd);
> `
Woot, one step.
Matt Lundin writes:
[...]
> The problem is that the functions capture-finalize and capture-destroy
> do not exist. I imagine the original code was designed for remember mode
> (which does have the functions remember-destroy and remember-finalize).
>
> The relevant function in org-capture.el, I b
Eric S Fraga writes:
> tycho garen writes:
>
>>> One of the things I'd like to be able to do is capture a new TODO from a
>>> command line. e.g.
>>
>> I use the following code that I got from Jack Moffit
>> (http://www.metajack.im), that does more or less what you're looking
>> for, I think. Ad