Re: [O] Is there a way to get all agenda TODOs programmatically?

2018-01-03 Thread Adam Porter
Nicolas Goaziou writes: Hi Nicolas, > I don't think the size of the functions matter much. Agenda is optimized > for single day view, so it is fast in this case because it only looks > for "interesting" headlines. However, this mechanism is terrible for > multi-days agendas: Agenda treats them a

Re: [O] Is there a way to get all agenda TODOs programmatically?

2018-01-03 Thread Adam Porter
Forgive the self reply, but I just made a change which makes the code much more pleasant. The matching functions are bound internally during matching, so instead of: (org-agenda-ng--agenda :files org-agenda-files :pred (lambda () (and (org-agenda-ng--todo-p) (or (org-agen

Re: [O] Is there a way to get all agenda TODOs programmatically?

2018-01-03 Thread Adam Porter
Nicolas Goaziou writes: >> I have some more code you might find useful. I had an idea to take a >> different approach with my org-agenda-ng code (not using org-element to >> parse the whole buffer first), and it seems to be working well so far. > > Clearly, `org-element-parse-buffer' is not adeq

Re: [O] How to get a list of all TODO keywords from defined variable `org-todo-keywords`?

2018-01-03 Thread Adam Porter
This might do: (completing-read "Todo keyword: " org-todo-keywords-for-agenda nil t)

[O] org-html-head documentation mistake?

2018-01-13 Thread Adam Porter
Hi, The docstring for org-html-head gives this example: #+BEGIN_SRC html p { color: #33 !important; font-size: 95% !important; } ]]> #+END_SRC When I customized the variable, I used those "CDAT

[O] Bug: org-capture when :prepend t org-capture-kill removes one char too much from target buffer [9.1.7 (9.1.7-18-g2f587d-elpaplus @ /Users/devil/.emacs.d/elpa/org-plus-contrib-20180312/)]

2018-03-24 Thread Adam Faryna
omplete-link :store org-bbdb-store-link) ("w3m" :store org-w3m-store-link) ("id" :follow org-id-open) ("file+sys") ("file+emacs") ("doi" :follow org--open-doi-link) ("elisp" :follow org--open-elisp-link) ("file" :complete org-file-complete-link) ("ftp" :follow (lambda (path) (browse-url (concat "ftp:" path ("help" :follow org--open-help-link) ("http" :follow (lambda (path) (browse-url (concat "http:" path ("https" :follow (lambda (path) (browse-url (concat "https:" path ("mailto" :follow (lambda (path) (browse-url (concat "mailto:"; path ("news" :follow (lambda (path) (browse-url (concat "news:"; path ("shell" :follow org--open-shell-link)) org-list-description-max-indent 5 org-html-format-inlinetask-function 'org-html-format-inlinetask-default-function org-agenda-mode-hook '(hl-line-mode) org-agenda-files '("/Users/devil/.emacs.d/agenda/shared.org" "/Users/devil/.emacs.d/agenda/tasks.org.gpg") org-clock-out-hook '(org-clock-remove-empty-clock-drawer) org-shiftright-final-hook '(windmove-right) org-clock-out-remove-zero-time-clocks t org-agenda-skip-scheduled-if-deadline-is-shown t org-tag-alist '(("@health" . 104) ("@fun" . 117) ("@career" . 99) ("@family&friends" . 102) ("@love" . 108) ("@wealth" . 119)) ) -- Best Regards, Adam Faryna Appdy.net I prefer to use encrypted email. My public key fingerprint is F410 95D7 AE78 22C1 0E25 F16A 0876 80C6 DA35 C73A. Learn how to encrypt your email https://emailselfdefense.fsf.org/en.

[O] Agenda-like/query language project: org-agenda-ng/org-ql

2018-05-10 Thread Adam Porter
seful, I think. And if Emacs ever gains a faster Elisp implementation, I think it would be fast enough in all cases. So my question is, would anyone find this generally useful? Should I consider polishing it up and releasing it as a package (in which case, it would probably be called something like org-ql rather than org-agenda-ng, and the agenda-like views would be ancillary)? Any questions, ideas, suggestions, and contributions are welcome. Thanks, Adam

[O] ANN/RFC: org-sidebar

2018-05-23 Thread Adam Porter
Hi all, Inspired by a post on Reddit, which was inspired by the Organized plugin for the Atom editor, I came up with this: https://github.com/alphapapa/org-sidebar This package presents a helpful sidebar view for Org buffers. At the top is a chronological list of scheduled and deadlined tasks i

Re: [O] ANN/RFC: org-sidebar

2018-06-04 Thread Adam Porter
Hi Thomas, On Mon, Jun 4, 2018 at 4:03 AM, Thomas Holst wrote: > Hi Adam, > > I really like the idea of org-sidebar. I tried it and followed the > instructions in README.org but I get an error. Here is the > bactrace: > > Debugger entered--Lisp error: (void-variable main-win

Re: [O] ANN/RFC: org-sidebar

2018-06-04 Thread Adam Porter
on MELPA, but I think it needs some more work first. Thanks, Adam

[O] ANN: org-make-toc package makes tables of contents

2018-06-08 Thread Adam Porter
dings, etc, and you can exclude headings from TOCs. https://github.com/alphapapa/org-make-toc Any comments or suggestions are welcome. Hope you find this useful. Thanks, Adam

Re: [O] ANN/RFC: org-sidebar

2018-06-08 Thread Adam Porter
On Mon, Jun 4, 2018 at 9:19 AM, Holst Thomas (PS-EC/ESE4) wrote: > Hello Adam, > > No problem. I am not that good in elisp, but I like to help testing. So I am > glad I could help here. > > After a git pull the error is gone - but I don't get any entries in the > s

[O] New org-count-words function

2018-06-12 Thread Adam Porter
Hi friends, Here's a new function that counts lines, words, and characters in the region or the subtree at point. It prints a message like `count-words` does, like: Subtree "Heading" has 7 line, 5 words, and 28 characters. Note that it does *not* count words in heading lines, planning lines

[O] org-metaup destructive when region active?

2018-06-14 Thread Adam Porter
Hi, I noticed that using org-metaup when a region is active seems to behave in an unintuitive and potentially dangerous way. I would expect that it would behave similarly to org-refile when a region is active, but it doesn't. Looking at the code, I see that it does this: ┌ │ (let* ((a (min

[O] org creates bibtex fontification buffers without setting dialect, causes error

2018-06-14 Thread Adam Porter
Hi, For a while now I've been getting "(wrong-type-argument stringp nil)" errors from a timer running bibtex-parse-buffers-stealthily. Finally I've tracked it down to an "*org-src-fontification:bibtex-mode*" buffer (which is hidden, but shows up in ibuffer by pressing "C-u g"). The backtrace was

[O] org-map-entries calls org-agenda-prepare-buffers unnecessarily?

2018-06-24 Thread Adam Porter
Hi, I've noticed that org-map-entries calls org-agenda-prepare-buffers whenever its SCOPE argument is nil. According to the docstring, a nil SCOPE means, "The current buffer, respecting the restriction if any," so it doesn't seem necessary to call org-agenda-prepare-buffers. I noticed this becau

[O] integrating org-mode with complice.co?

2018-08-09 Thread Adam Spiers
asks back into org-mode. Does that make sense, or is it a dumb idea? :-) Thanks, Adam

[O] [PATCH] Fix: (org-agenda-get-progress) Logbook list bullets with 2+ spaces

2018-08-31 Thread Adam Porter
Previously, logbook list entries with more than one space between the bullet and the beginning of the entry would be ignored (i.e. if a bullet is defined in org-list-two-spaces-after-bullet-regexp, two spaces will be inserted after the bullet, and that prevents state-changed entries from appearing

[O] [PATCH] Change: (org-agenda-get-progress) Set type text-property accordingly

2018-08-31 Thread Adam Porter
Previously, the "type" text-property was always set to "closed", even when an item was actually matched because of its "Clock" or "State" line. Now, the "type" text-property is set according to why the item was matched. Note: it's possible that some code might expect the value to be "closed" in a

[O] [PATCH] Change: (org-agenda-bulk-action) Prompt w/number of marked items

2018-09-02 Thread Adam Porter
* lisp/org-agenda.el (org-agenda-bulk-action): When scattering, prompt for number of days with number of marked items. A typical pattern for me is to mark a significant number of items scheduled in the past and scatter them into the future. Usually I want to schedule one item per day, i.e. acro

[O] code.orgmode.org misbehaving?

2018-09-02 Thread Adam Porter
Token: 6GjMG7eVb5ftPm2fwg0PMuBUY7c6MTUzNTkzMzI5MDc1NTE5OTU0Mg== 2018/09/03 00:14:32 [TRACE] Template: repo/home HTTP/1.0 200 OK Content-Type: text/html; charset=UTF-8 Date: Mon, 03 Sep 2018 00:14:32 GMT ... Thanks, Adam

[O] Org-capture creates file after cancel

2018-09-10 Thread Adam Sneller
I use a custom function (originally from this post on StackExchange) to create files from org-capture (one file per entry). For some reason, if I cancel the entry with C-c C-k Emacs still creates the file. (defun my/generate-org-note-name () (se

[O] [PATCH] Add org-attach-download command

2018-09-13 Thread Adam Porter
. Before downloading, it asks for confirmation. Thanks, Adam>From 426f95caa8e1f728327809cad2f9539857bb8567 Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Thu, 13 Sep 2018 04:44:48 -0500 Subject: [PATCH] org-attach: Add org-attach-download command * lisp/org-attach.el: Require "files&q

Re: [O] [PATCH] Change: (org-agenda-bulk-action) Prompt w/number of marked items

2018-09-13 Thread Adam Porter
Nicolas Goaziou writes: Hi Nicolas, >> Alternatively, the number of marked items could be indicated in the >> prompt string, e.g. "Scatter X tasks across how many days:". A >> customizeable default could also be provided. > > FWIW, I slightly prefer the second option. Would you want to provide

Re: [O] Visualizing org files

2018-09-13 Thread Adam Porter
Marcelo de Moraes Serpa writes: > What I'm proposing is a way to visualize org buffers in Freeplane and > vice-versa. I would love that! > I think a script to automatically transform the Freeplane XML to org > and vice-versa wouldn't be too hard to come up with. I am not as confident as you,

Re: [O] Any easy way to use multiple indirect buffers based on subtrees?

2018-09-13 Thread Adam Porter
In addition to Kyle's suggestion, you may find Helm useful, as commands like helm-org-in-buffer-headings have an "Open in indirect buffer" action, which makes it easy to open subtrees in indirect buffers. helm-org-rifle can also do this. If there are certain subtrees you often work with together,

Re: [O] "Refiled from..." Notes in LOGBOOK - Feature suggestion

2018-09-13 Thread Adam Porter
Stas Vlasov writes: > It could be useful to have a note about the place where the entry was refiled > from. Like so: > > * TODO Note on where the entry was refiled from > :LOGBOOK: > - Refiled on [2016-04-04 Mon 00:57] from ~/emacs-tasks.org::*Tasks%20workflow > - Refiled on [2015-05-15 Fri 13

Re: [O] [PATCH] Change: (org-agenda-bulk-action) Prompt w/number of marked items

2018-09-13 Thread Adam Porter
I went ahead and made a patch for that idea. Thanks, Adam>From bba4a705cb028643ee76c9e37b0168e8a1152986 Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Sun, 2 Sep 2018 03:53:36 -0500 Subject: [PATCH] org-agenda: Add org-agenda-scatter-days option The new option sets the number of days

[O] Suggestion: org-link-match struct and functions

2018-09-13 Thread Adam Porter
ption link))) #+END_SRC Thanks, Adam #+BEGIN_SRC elisp (cl-defstruct org-link protocol path description) (defun org-link-match (&optional s) "Return an `org-link' struct if an Org link is matched in string S or at point. Matches with `org-bracket-link-analytic-regexp'." ;

Re: [O] bug#32722: bug#32722: 26.1; Org-publish depend on non-free platform ?

2018-09-16 Thread Adam Porter
I'm not an expert on this package nor this situation, however, looking at the htmlize.el file shows: ;; Copyright (C) 1997-2003,2005,2006,2009,2011,2012,2014,2017,2018 So it would appear that the package has existed longer than either GitHub or Org. I'm guessing that its author moved its pri

Re: [O] Move (the children of) a subtree to another subtree programmatically

2018-09-16 Thread Adam Porter
See the SCOPE argument to org-map-entries. I'd also recommend using org-refile instead of org-cut/paste-subtree. You may also find the org-datetree system helpful.

[Orgmode] adding subheadings

2007-07-15 Thread Adam Spiers
her than freeform strings, but I couldn't figure out how to get it to refer to to org-todo-keywords-1. Finally, what's the preferred way to submit patches? Is there a revision-controlled repository available anywhere? Cheers, Adam ___ Emacs-orgmode mailing list Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] adding subheadings

2007-07-16 Thread Adam Spiers
Adam Spiers ([EMAIL PROTECTED]) wrote: > (defun org-new-subheading () > "Add a new heading, demoted from the current heading level." > (interactive) > (org-insert-heading) > (org-demote-subtree)) ^^ Sorry, tha

[Orgmode] proposal: defconst/defcustom org-tags-regexp

2007-07-16 Thread Adam Spiers
rrently, the "<" prefix confuses the code); and maybe something else, like "+" to prefix tags which denote actions forming part of a bigger picture e.g. "+health" for any actions/projects related to living more healthily (less elisp hacking and more sunlight might be

Re: [Orgmode] proposal: defconst/defcustom org-tags-regexp

2007-07-20 Thread Adam Spiers
On Wed, Jul 18, 2007 at 11:24:40PM +0200, Carsten Dominik wrote: > On Jul 16, 2007, at 15:21, Adam Spiers wrote: > >There seem to be a number of hardcoded regexps currently used for > >matching heading tags, all very similar looking, and typically > >something like: > &

Re: [Orgmode] Vacation, and 5.04.

2007-07-20 Thread Adam Spiers
ok8 It claims to be about git, but actually it's more about distributed revision control systems in general - everything he says applies to similar systems such as mercurial. > Enjoy the summer (if you are on the northern hemisphere....) I am, but still waiting for it to stop raining :-(

[Orgmode] Integration of Org mode and mairix (was: ... and Gnus)

2007-07-20 Thread Adam Spiers
e code for my hacks attached. Cheers, Adam ;; Things to help me with Getting Things Done. (defvar as-mairix-links-clipboard "~/.clip-mairix" "Pseudo-clipboard file where mairix URLs get copied to.") (defvar as-mairix-results-folder "~/mail/mairix" "Fold

Re: [Orgmode] adding subheadings

2007-07-20 Thread Adam Spiers
On Tue, Jul 17, 2007 at 02:58:59PM -0600, Scott Jaderholm wrote: > >Would something like the following be of use to anyone other than me? > > Definitely! The general purpose part (inserting subheadings/subtodos) > is useful to me, but I don't have a TODO keywords hierarchy so the > chaining isn't

Re: [Orgmode] Automatic Elapsed Time Stamps?

2007-07-27 Thread Adam Spiers
On Fri, Jul 27, 2007 at 04:07:39PM -0400, Alan Dove wrote: > Hey, folks: > > In my work, I often take notes at a meeting while simultaneously > taping it. To refer back to specific parts of the tape later, I > periodically check the elapsed time on the digital recorder, and > enter that in m

Re: [Orgmode] counter-intuitive key bindings

2007-07-28 Thread Adam Spiers
On Sat, Jul 28, 2007 at 12:17:06PM +0100, Leo wrote: > (info "(org)Multiple sets in one file") > | `C-S-' > | `C-S-' > | These keys jump from one TODO subset to the next. In the above > | example, `C-S-' would jump from `TODO' or `DONE' to > | `REPORT', and any of the words in the s

Re: [Orgmode] org-export to Palm Markup Language (PML)

2007-07-29 Thread Adam Spiers
Charles Cave ([EMAIL PROTECTED]) wrote: > Bastien, > > Well done with org-export-as-latex ! I installed it on > GNU Emacs 22.1.1 on Windows XP and it works very well. > > I am working on a Perl script to convert org-mode to > Palm Markup Language to make ebooks for my Palm m515 > and the ereader

Re: [Orgmode] Integration of Org mode and mairix

2007-08-14 Thread Adam Spiers
ding link capabilities with > great interrest, and I do like the code that has been written. > Thanks in particular to Adam Spiers and George Greve for their > inspiring mairix hack. My pleasure :-) > Here is my take on it. > > First about the mairix integration. If I understand

Re: [Orgmode] include file contents in org files?

2007-08-22 Thread Adam Spiers
Bastien ([EMAIL PROTECTED]) wrote: > Rainer Stengele <[EMAIL PROTECTED]> writes: > > > I'd like to have the initial lines (configuration) of any org file be > > the same. > > Perhaps we can use Tempo [1] or Templates [2] for this? If I understand Rainer's original requirements, that wouldn't wor

Re: [Orgmode] Org-mode development (was: Vacation, and 5.04)

2007-09-01 Thread Adam Spiers
Carsten Dominik ([EMAIL PROTECTED]) wrote: > On Jul 20, 2007, at 17:28, Adam Spiers wrote: > >This might be a pertinent moment to bring up the topic of revision > >control ... or actually it might be a particularly bad moment, > >considering that the maintainer is about to van

Re: [Orgmode] counter-intuitive key bindings

2007-09-01 Thread Adam Spiers
Carsten Dominik ([EMAIL PROTECTED]) wrote: > On Jul 28, 2007, at 14:52, Adam Spiers wrote: > >On a related topic, if I have S-{left,right} on my org-disputed-keys > >list, this breaks using them for changing a timestamp by one-day > >increments, even though I don't consid

Re: [Orgmode] proposal: defconst/defcustom org-tags-regexp

2007-09-01 Thread Adam Spiers
Carsten Dominik ([EMAIL PROTECTED]) wrote: > On Jul 20, 2007, at 17:05, Adam Spiers wrote: > >On Wed, Jul 18, 2007 at 11:24:40PM +0200, Carsten Dominik wrote: > >>On Jul 16, 2007, at 15:21, Adam Spiers wrote: > >>>There seem to be a number of hardcoded regexps cu

Re: [Orgmode] GTD: Solving the bottleneck of converting incoming mails to NEXT actions

2007-09-24 Thread Adam Spiers
On Mon, Sep 24, 2007 at 10:44:44PM +0200, Georg C. F. Greve wrote: > Hi all, > > I've now been using Org mode for a couple of months and am quite happy > with it in most ways, with conversion of incoming emails into NEXT > actions being the main bottleneck. [snipped] > Since I know that various

Re: [Orgmode] GTD: Solving the bottleneck of converting incoming mails to NEXT actions

2007-09-24 Thread Adam Spiers
Adam Spiers ([EMAIL PROTECTED]) wrote: > On Mon, Sep 24, 2007 at 10:44:44PM +0200, Georg C. F. Greve wrote: > > Hi all, > > > > I've now been using Org mode for a couple of months and am quite happy > > with it in most ways, with conversion of incoming emails into

Re: [Orgmode] Org-mode with multiple major modes

2007-09-28 Thread Adam Spiers
/mmm-mode.sourceforge.net/ "MMM Mode is an emacs add-on package providing a minor mode that allows Multiple Major Modes to coexist in one buffer." Adam ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] FR: customizable fallback function for org-complete

2007-10-02 Thread Adam Spiers
ke dabbrev-expand, etc. Can this be made customizable? Thanks, Adam ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] FR: customizable fallback function for org-complete

2007-10-06 Thread Adam Spiers
On Wed, Oct 03, 2007 at 01:15:35AM +0200, Carsten Dominik wrote: > On Oct 2, 2007, at 14:00, Adam Spiers wrote: > >Here's a feature request idea which should be easy to implement. The > >docstring for org-complete ends with: > > > > At all other locations, this si

[Orgmode] FR: make org-add-log-note give more details

2007-10-08 Thread Adam Spiers
just pressed, but an absent-minded user such as myself likes to be reassured that he pressed the right button ;-) Cheers, Adam ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.o

Re: [Orgmode] depending TODOs, scheduling following TODOs automatically

2007-10-08 Thread Adam Spiers
On Mon, Oct 08, 2007 at 09:55:12PM +0100, Bastien wrote: > Implementing tasks-dependencies sounds pretty exciting! Yes, I've been wanting this too. > I'd like to jump in this discussion with a very simple idea. > > , > | * TODO When this task is marked done, send SCHEDULED to the next task >

Re: [Orgmode] Re: Release org-mode 5.10

2007-10-08 Thread Adam Spiers
On Fri, Sep 28, 2007 at 09:17:52AM -0400, Jason F. McBrayer wrote: > Bernt Hansen <[EMAIL PROTECTED]> writes: > > > Carsten Dominik <[EMAIL PROTECTED]> writes: > > > >> - The clocktable has a new `:scope' parameter. > > > > Cool! :) So now I can split my files again and still get a daily > > su

[Orgmode] FR: toggling timestamps active/inactive

2007-10-16 Thread Adam Spiers
Hi Carsten, Another simple idea - subject line is pretty much self-explanatory I think: would be great to be able to toggle timestamps between [] and <>. Why? Say I have an event in my diary.org file, and am subsequently told my presence at the event is no longer necessary. Consequently I would

[Orgmode] FR: more flexible customization of org-agenda-custom-commands key bindings

2007-10-16 Thread Adam Spiers
First, apologies for the constant "gimme" nature of my recent feature-request posts! org-agenda-custom-commands is awesome in its power. There are one or two respects in which I think it could be improved, however. I make extensive use of the functionality added relatively recently which enables

Re: [Orgmode] FR: toggling timestamps active/inactive

2007-10-16 Thread Adam Spiers
Rick Moynihan ([EMAIL PROTECTED]) wrote: > Adam Spiers wrote: > >Hi Carsten, > > > >Another simple idea - subject line is pretty much self-explanatory I > >think: would be great to be able to toggle timestamps between [] and > ><>. > > > >Why

Re: [Orgmode] Free `1' and `0' keys from the org-agenda interface ?

2007-10-16 Thread Adam Spiers
Bastien ([EMAIL PROTECTED]) wrote: > Hi all, > > i'd like to have your opinion on this. > > I tend to use my `org-agenda-custom-commands' in a strict order. > I first check for a first view, then check for a second view, etc. > It would be nice to be able to use `1' for the first view -- but

Re: [Orgmode] FR: more flexible customization of org-agenda-custom-commands key bindings

2007-10-16 Thread Adam Spiers
Adam Spiers ([EMAIL PROTECTED]) wrote: > First, apologies for the constant "gimme" nature of my recent > feature-request posts! *sigh* Here I go again ... Two more ideas for improving org-agenda: 1. Allow custom agenda commands to be given a descriptive name by the user whic

Re: [Orgmode] Free `1' and `0' keys from the org-agenda interface ?

2007-10-16 Thread Adam Spiers
On Tue, Oct 16, 2007 at 06:53:47PM +0100, Bastien wrote: > Adam Spiers <[EMAIL PROTECTED]> writes: > > > I'm curious about your suggestion of '<<' though - does that imply the > > sub-keymap functionality I asked for already exists? > >

foldout.el (was Re: [Orgmode] Values of org-indirect-buffer-display)

2007-10-17 Thread Adam Spiers
On Wed, Oct 17, 2007 at 11:38:36AM +0100, Chris Randle wrote: > I'm new to emacs and org-mode, so please forgive me if I've missed > something fundamental. > > I've been using org-tree-to-indirect-buffer bound to the default C-c C-x > b, and saw in the help that you can modify org-indirect-buffer-

Re: [Orgmode] FR: more flexible customization of org-agenda-custom-commands key bindings

2007-10-17 Thread Adam Spiers
On Wed, Oct 17, 2007 at 02:03:22PM +0100, Bastien wrote: > Adam Spiers <[EMAIL PROTECTED]> writes: > > > Another approach, and this is my personal preference, would be to > > allow "sub-keymaps", so that e.g. I could press C-c C-a s and it would > >

Re: [Orgmode] Free `1' and `0' keys from the org-agenda interface ?

2007-10-17 Thread Adam Spiers
On Wed, Oct 17, 2007 at 05:47:58PM +0200, Carsten Dominik wrote: > On Oct 16, 2007, at 23:26, Bastien wrote: > >Adam Spiers <[EMAIL PROTECTED]> writes: > > > >>>`< <' : cycle through default restricted states (see above) > >> > >>Hmm,

Re: [Orgmode] FR: toggling timestamps active/inactive

2007-10-17 Thread Adam Spiers
On Tue, Oct 16, 2007 at 06:13:41PM +0200, Carsten Dominik wrote: > On Oct 16, 2007, at 16:19, Adam Spiers wrote: > > Another simple idea - subject line is pretty much self-explanatory I > > think: would be great to be able to toggle timestamps between [] and > > <>.

Re: [Orgmode] Org-mode version 5.13

2007-10-19 Thread Adam Spiers
On Fri, Oct 19, 2007 at 08:25:18AM +0200, Carsten Dominik wrote: > Hi everyone, > > I am releasing Org-mode version 5.13 at http://orgmode.org >- The agenda dispatcher > + `<' cycles through restriction states. > + Multi-character access codes to commands (= sub-keymaps). I can't be

Re: [Orgmode] FR: toggling timestamps active/inactive

2007-10-19 Thread Adam Spiers
On Fri, Oct 19, 2007 at 07:36:17AM +0200, Carsten Dominik wrote: > On Oct 17, 2007, at 19:18, Adam Spiers wrote: > >Now that I am beginning to get really serious about implementing the > >review component of GTD, new ideas for org-mode tweaks are continually > >popping into m

[Orgmode] downloads of old releases

2007-10-19 Thread Adam Spiers
would be to expose a mercurial or git repository with all the releases tagged, but I don't want to ask for too much ;-) Thanks! Adam ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] FR: more flexible customization of org-agenda-custom-commands key bindings

2007-10-27 Thread Adam Spiers
Sorry for the slow replies. I have not had time to catch up with the backlog in my orgmode inbox recently, so I previously missed this thread :-( Bastien ([EMAIL PROTECTED]) wrote: > Carsten Dominik <[EMAIL PROTECTED]> writes: > >> 2. Once a custom command has been invoked, provide a binding for

Re: [Orgmode] Re: org-mairix.el, version 0.3

2007-10-29 Thread Adam Spiers
(sorry for very late reply to this thread!) On Thu, Sep 27, 2007 at 04:27:05PM +0200, Georg C. F. Greve wrote: > On Thu, 27 Sep 2007 09:22:18 -0400 > Bernt Hansen <[EMAIL PROTECTED]> wrote: > > bh> Is it possible to use mairix with Gnus and an IMAP server to look > bh> up mail by message id or

Re: [Orgmode] Re: Estimated times

2007-10-29 Thread Adam Spiers
On Mon, Oct 29, 2007 at 09:08:08AM +, Christian Egli wrote: > Sebastjan Trepca gmail.com> writes: > > I was wondering if there is a way to set a time estimate for a task > > and then match it with actual logged time? After you finish it of > > course. > > > > Maybe something similar as checkb

Re: [Orgmode] FR: more flexible customization of org-agenda-custom-commands key bindings

2007-10-30 Thread Adam Spiers
On Tue, Oct 30, 2007 at 07:06:03AM +0100, Carsten Dominik wrote: > On 28Oct2007, at 3:42 PM, Bastien wrote: > > I think it will be hard to have a simpler keystroke than `C-x b' :) Bastien - actually it's really important for me that this be a single letter. The part of GTD I am weakest with is t

Re: [Orgmode] Announcing my tutorial on using dates (and times) in org-mode

2007-10-30 Thread Adam Spiers
t related to org-mode). Thanks, Adam ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] XHTML export -   etc.

2007-11-02 Thread Adam Spiers
Another XHTML export question - is it possible to export special symbols such as " " ? If not, perhaps the @ syntax could be extended from simple tags to these too, i.e. "@ " ? Thanks! ___ Emacs-orgmode mailing list Remember: use `Reply All' to send r

[Orgmode] XHTML export - customizing via local variables

2007-11-02 Thread Adam Spiers
Is org-export-html-style the only aspect of XHTML export which can be customized via Local Variables? It would be nice to be able to override org-export-html-table-tag per-file, for instance, but it didn't work for me and I wasn't clever enough to figure out how the code works from a quick glance.

Re: [Orgmode] XHTML export -   etc.

2007-11-02 Thread Adam Spiers
On Fri, Nov 02, 2007 at 03:26:19PM +, Bastien wrote: > Adam Spiers <[EMAIL PROTECTED]> writes: > > > Another XHTML export question - is it possible to export special > > symbols such as " " ? If not, perhaps the @ syntax could be > > ext

[Orgmode] inserting files within remember templates

2007-11-05 Thread Adam Spiers
I'm finally getting around to setting up remember properly for regular use. One thing I think I'll need is the ability to include the contents of an external file in a remember template at the time of instantiation. Or if there was a % escape sequence for executing arbitrary elisp, that would be

Re: [Orgmode] inserting files within remember templates

2007-11-06 Thread Adam Spiers
On Tue, Nov 06, 2007 at 06:41:36AM +0100, Carsten Dominik wrote: > Setting up remember mode runs a remember-mode-hook, you can use that. That could be a workaround. > I would be interested to know what kind of applications you have in mind > when you want to include a file into a template, or exe

Re: [Orgmode] Org Remember idea

2007-11-06 Thread Adam Spiers
On Tue, Nov 06, 2007 at 05:42:03PM +0100, Tim O'Callaghan wrote: > I've started using Remember mode more and more, and it has given me an > idea for new piece of functionality. > > %c - insert clipboard/kill-ring at point > > This is for 'auto' pasting links or snippets of text from my browser >

Re: [Orgmode] inserting files within remember templates

2007-11-06 Thread Adam Spiers
On Tue, Nov 06, 2007 at 04:36:47PM +, Adam Spiers wrote: [snip] > This could easily be accomplished if remember templates allowed syntax > such as > > ,-- > | * %T > | %(shell-command-to-string "grep 'last full' /proc/acpi/battery/BAT0/info") >

Re: [Orgmode] http://www.todotxt.org/

2007-11-07 Thread Adam Spiers
On Sat, Nov 03, 2007 at 10:19:05PM +, Leo wrote: > Hi there, > > I came across www.todotxt.org and it looks like another good application > for managing todo (or applying GTD methodology). > > It is also based on text file. That's funny, I did something similar years ago: http://www.adams

Re: [Orgmode] inserting files within remember templates

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 02:37:54AM +, Bastien wrote: > Adam Spiers <[EMAIL PROTECTED]> writes: > > Currently I do this by coding the helper to dump the Message-Id into > > ~/.clip-mairix, and then the elisp code inserts the contents of this > > file back into the o

[Orgmode] property searches for #+CATEGORY

2007-11-07 Thread Adam Spiers
I have several personal .org files, and several work-related ones too. In each personal file, I have a line: #+CATEGORY: personal and in each work-related file, I have a line: #+CATEGORY: work I would like to be able to bind agenda custom commands to do tag searches which are narrowed to

Re: [Orgmode] Dependant tasks

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 12:07:20PM +0100, Sebastjan Trepca wrote: > Hi, > > Is it possible to have a task that is "locked" until some other task > is finished? Not yet (I think), but there have been *many* discussions about this recently, e.g. http://search.gmane.org/?query=dependencies&group=gm

Re: [Orgmode] property searches for #+CATEGORY

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 12:49:44PM +, Bastien wrote: > Adam Spiers <[EMAIL PROTECTED]> writes: > > > Would it make sense to include CATEGORY as a special property? > > Certainly. And it is already there: > > ,[ (info "(org)Categories") ]

Re: [Orgmode] property searches for #+CATEGORY

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 05:16:26PM +, Bastien wrote: > Adam Spiers <[EMAIL PROTECTED]> writes: > >> This would let you restrict any agenda search to a group of agenda > >> files. I don't want to digg too far in this direction, but I think > >> th

Re: [Orgmode] property searches for #+CATEGORY

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 03:52:55PM +0100, Tim O'Callaghan wrote: > My point with the taxonomy is that Categories especially 'personal' > and 'work' can be thought of as Meta Contexts (i wanted to say > Meta-TAGS, but that might get confusing). So contexts that are > arbitrary but are used to group

Re: [Orgmode] property searches for #+CATEGORY

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 02:49:28PM +, Bastien wrote: > Adam Spiers <[EMAIL PROTECTED]> writes: > > >> It would seem to me that this is exactly what tags does. > >> You could move everything down a level and use tag inheritance: > >> * personal s

Re: [Orgmode] property searches for #+CATEGORY

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 05:15:55PM +0100, Carsten Dominik wrote: > Thanks for an interesting discussion about the merits of properties > versus tags etc. Very illuminating. > > However, I do think that Adam's initial request to make the > category available as a special property for queries in no

Re: [Orgmode] property searches for #+CATEGORY

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 02:59:35PM +0100, Tim O'Callaghan wrote: > On 07/11/2007, Adam Spiers <[EMAIL PROTECTED]> wrote: > > On Wed, Nov 07, 2007 at 02:23:12PM +0100, Tim O'Callaghan wrote: > > > It would seem to me that this is exactly what tags does. > >

Re: [Orgmode] inserting files within remember templates

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 12:46:45PM +, Bastien wrote: > > Currently I do this by coding the helper to dump the Message-Id into > > ~/.clip-mairix, and then the elisp code inserts the contents of this > > file back into the org buffer. However I would like it to be inserted > > via a remember te

Re: [Orgmode] property searches for #+CATEGORY

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 02:15:22PM +, Bastien wrote: > I understand now. > > I think it would be clearer to distinguish between categorizing files > and categorizing tasks. In a sense, using #+CATEGORY across several > files (as you do) is more a way to group these files under the same > ombr

Re: [Orgmode] property searches for #+CATEGORY

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 02:23:12PM +0100, Tim O'Callaghan wrote: > On 07/11/2007, Adam Spiers <[EMAIL PROTECTED]> wrote: > > I have several personal .org files, and several work-related ones too. > > In each personal file, I have a line: > > > > #+CATEG

Re: [Orgmode] inserting files within remember templates

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 02:39:07PM +, Bastien wrote: > Adam Spiers <[EMAIL PROTECTED]> writes: > > > I suppose it depends on the relative merits of parsing the mail via > > the mutt helper (which is Perl in my case) vs. doing it with elisp. > > In fact, I was

[Orgmode] .ics export violates RFC2445

2007-11-07 Thread Adam Spiers
I use org-export-icalendar-combine-agenda-files to export my appointments to an .ics file which I point korganizer at. I noticed ages ago that if I have an appointment with a comma in, e.g.: ** <2007-12-07 Fri 20:00> foo, bar korganizer always shows it as "bar" rather than "foo, bar". But I nev

Re: [Orgmode] property searches for #+CATEGORY

2007-11-07 Thread Adam Spiers
On Wed, Nov 07, 2007 at 05:20:32PM +0100, Carsten Dominik wrote: > The idea to have groups of agenda files has come up before. > It is hard to implement because agenda creating commands > are *global* commands, so the group should not be a property > of the location from where you call the agenda.

[Orgmode] strange behaviour when customising org-agenda-custom-commands

2007-11-07 Thread Adam Spiers
I haven't figured out how to reproduce this reliably yet, but there seems to be a bug in 5.13h where when customizing org-agenda-custom-commands, sometimes during a Set or Save (not sure which) all the prefix key documentation entries vanish. Any ideas why this would happen?

[Orgmode] FR: populate default prompt text for org-time-stamp on an existing time stamp?

2007-11-08 Thread Adam Spiers
Another feature request (sorry - I'm beginning to feel quite guilty about the deluge I've rained on Carsten's inbox recently :-) If I position the point on an existing timestamp which includes not only the date but also the time, e.g. * <2007-11-27 Tue 19:30-20:30> and then hit 'C-c .', then th

Re: [Orgmode] inserting files within remember templates

2007-11-24 Thread Adam Spiers
On Wed, Nov 07, 2007 at 09:42:55AM +0100, Carsten Dominik wrote: > On 6 Nov 2007, at 11:39 PM, Adam Spiers wrote: > > On Tue, Nov 06, 2007 at 04:36:47PM +0000, Adam Spiers wrote: > > > This could easily be accomplished if remember templates allowed &g

Re: [Orgmode] FR: populate default prompt text for org-time-stamp on an existing time stamp?

2007-11-24 Thread Adam Spiers
On Sun, Nov 11, 2007 at 09:49:11PM +0100, Carsten Dominik wrote: > On 8Nov2007, at 2:03 PM, Adam Spiers wrote: > >Another feature request (sorry - I'm beginning to feel quite guilty > >about the deluge I've rained on Carsten's inbox recently :-) > > As long

Re: [Orgmode] Org-mode 5.14

2007-11-27 Thread Adam Spiers
On Tue, Nov 27, 2007 at 02:42:11PM +0100, Carsten Dominik wrote: > Hi, > > it has been a while, but finally its done. I am releasing Org-mode > 5.14 at > > http://orgmode.org Wow. Many thanks and congratulations for another bumper release! ___

<    3   4   5   6   7   8   9   10   >