[O] How to display only state changes in a Logbook?

2014-12-24 Thread Yuri Niyazov
I am trying to figure out how to configure a timeline agenda view that would show only state changes, rather than SCHEDULED or DEADLINE entries. I customized the "Org Agenda Log Mode Items:" entry have only the "state" checkbox on, and "closed" and "clock" are off, and that seems to imply that only

Re: [O] How to display only state changes in a Logbook?

2014-12-25 Thread Yuri Niyazov
it the Scheduled and Deadline entries. On Wed, Dec 24, 2014 at 10:14 PM, Yuri Niyazov wrote: > I am trying to figure out how to configure a timeline agenda view that > would show only state changes, rather than SCHEDULED or DEADLINE entries. I > customized the "Org Agenda Log Mode

Re: [O] How to display only state changes in a Logbook?

2014-12-25 Thread Yuri Niyazov
Got it! What I was looking for is "(org-agenda-entry-types '(:closed)" in the org-agenda-custom-commands block. On Thu, Dec 25, 2014 at 2:36 AM, Yuri Niyazov wrote: > A quick follow-up to this: I've also started investigating whether, > instead of logging state changes

[O] Agenda with an archived indicator

2014-12-28 Thread Yuri Niyazov
I am trying to build an agenda view that includes both Archived and non-Archived items, and includes an indicator whether an item is archived or not. Here's how I've gotten it to work so far: In custom agenda: (... (org-agenda-prefix-format "%(yn/org-archived-display) %-11c%-11T%-11s") ... ) (de

Re: [O] Agenda with an archived indicator

2014-12-30 Thread Yuri Niyazov
Any ideas on this, anyone? On Sun, Dec 28, 2014 at 2:30 AM, Yuri Niyazov wrote: > I am trying to build an agenda view that includes both Archived and > non-Archived items, and includes an indicator whether an item is > archived or not. Here's how I've gotten it to work so

Re: [O] Agenda with an archived indicator

2014-12-30 Thread Yuri Niyazov
test On Tue, Dec 30, 2014 at 1:47 AM, Yuri Niyazov wrote: > Any ideas on this, anyone? > > On Sun, Dec 28, 2014 at 2:30 AM, Yuri Niyazov wrote: >> I am trying to build an agenda view that includes both Archived and >> non-Archived items, and includes an indicator whether a

[O] Block agenda

2014-12-31 Thread Yuri Niyazov
How do I go back and forth across days in one view in a block agenda, without resetting the other one? I am configuring a custom view in the agenda like this: (setq org-agenda-custom-commands '(("A" "Multiple Agendas" ((agenda "" ) (agenda "" )) ((org-agenda-nday

[O] org-log-done vs. State Logbook

2015-01-03 Thread Yuri Niyazov
Hi everyone, So, I am trying to learn org-mode and figure out what's best for me. One of the things that I would like to see is how long a TODO task takes to travel through my life, on average from the moment when it is captured, to scheduled, to done. Does something like this already exists?

Re: [O] org-log-done vs. State Logbook

2015-01-03 Thread Yuri Niyazov
d is quite controversial, but the one aspect of it that I liked when I was exposed to it is that it required someone to keep track of how long it took a task, on average, to go from "created" to "completed" stage. On Sat, Jan 3, 2015 at 8:45 PM, Eric Abrahamsen wrote: > Yuri

Re: [O] org-log-done vs. State Logbook

2015-01-03 Thread Yuri Niyazov
as soon as I typed that out I googled org mode scrum and found https://github.com/ianxm/emacs-scrum so I'll be giving that a look. Thanks for stimulating my brain :) On Sat, Jan 3, 2015 at 8:57 PM, Yuri Niyazov wrote: > Thank you. I am already using it, and org-habit really is fo

[O] [bug?] Different whitespace behavior between capture, and capture w. refile

2015-01-04 Thread Yuri Niyazov
Let's say I start with a .notes file that looks like this: #+BEGIN_EXAMPLE * Tasks * Refile Here * Other Stuff #+END_EXAMPLE with all the default capture templates. The only org-mode configuration I have is (org-blank-before-new-entry (quote ((heading) (plain-list-item as well as C-c c for

Re: [O] [bug?] Different whitespace behavior between capture, and capture w. refile

2015-01-08 Thread Yuri Niyazov
Could someone please chime in on this? On Sunday, January 4, 2015, Yuri Niyazov wrote: > Let's say I start with a .notes file that looks like this: > > #+BEGIN_EXAMPLE > * Tasks > * Refile Here > * Other Stuff > #+END_EXAMPLE > > with all the default capture

[O] Hiring a programmer

2015-01-12 Thread Yuri Niyazov
I'd like to hire a programmer to hack on some things in org-mode for my use. If these improvements are contributed back the main org-mode repository, would the copyright assignment have to come from me, or from the programmer?

Re: [O] Clock start time is gone

2015-01-16 Thread Yuri Niyazov
Noah Slater apache.org> writes: > I'm moving point over a habit in the agenda, clocking on with I, > switching buffer a few times, then switching back and hitting O. > Occasionally, I get a "Clock start time is gone" message. I just got > one now. If I go to the node, I see this: > > :LOGBOOK: >

[O] Bug: agenda interaction with org-agenda-dim-blocked-tasks, org-agenda-max-entries and org-enforce-todo-dependencies [8.3beta (release_8.3beta-785-gb5d9f4 @ /Users/yn/dotfiles/org.emacs.d/org-mode/

2015-02-02 Thread Yuri Niyazov
Consider the following org file: * Tasks ** Ordered Tasks :PROPERTIES: :ORDERED: t :END: *** TODO Module 1 TODO Item 1 SCHEDULED: <2015-02-01 Sun> TODO Item 2 SCHEDULED: <2015-02-01 Sun> *** TODO Module 2 TODO Item 3 SCHEDULED: <2015-02-01 Sun> TODO Item 4 SCHEDULED: <2015-02-0

Re: [O] Limiting number of items shown in custom agenda

2015-02-03 Thread Yuri Niyazov
does org-agenda-max-entries not work? On Tue, Feb 3, 2015 at 11:13 AM, Subhan Michael Tindall < subh...@familycareinc.org> wrote: > I have the following custom agenda command > > ("Z" "Last Worked skip" ((alltodo "" ((org-agenda-skip-function > > (lambda nil (org-agenda-skip-entry-if (quote notr

Re: [O] Bug: agenda interaction with org-agenda-dim-blocked-tasks, org-agenda-max-entries and org-enforce-todo-dependencies [8.3beta (release_8.3beta-785-gb5d9f4 @ /Users/yn/dotfiles/org.emacs.d/org-m

2015-02-03 Thread Yuri Niyazov
On Tue, Feb 3, 2015 at 1:13 PM, Nicolas Goaziou wrote: > > > This starts happening when org-agenda-dim-blocked-tasks is set to > > invisible. What seems to happen is that the blocked tasks, even though > > they are invisible, are still counted towards org-agenda-max-entries. > > AFAIU, even though

Re: [O] Bug: agenda interaction with org-agenda-dim-blocked-tasks, org-agenda-max-entries and org-enforce-todo-dependencies [8.3beta (release_8.3beta-785-gb5d9f4 @ /Users/yn/dotfiles/org.emacs.d/org-m

2015-02-03 Thread Yuri Niyazov
On Tue, Feb 3, 2015 at 2:12 PM, Nicolas Goaziou wrote: > Documentation (e.g., docstrings) may be improved, then. Would you want > to suggest such an improvement? In the docstring for "org-agenda-dim-blocked-tasks" "Because dimming is not the same as skipping, items dimmed to invisible count agai

Re: [O] Bug: bulk TODO state change creates a LOGBOOK state change note only for one task

2015-02-05 Thread Yuri Niyazov
I can confirm - this has happened to me too On Wednesday, February 4, 2015, Maxim Baz wrote: > The important piece of org-mode configuration is: > > org-minimal.el > > (setq org-todo-keywords '( > (sequence "TODO(t)" "NEXT(n!)" "|" "DONE(d)"))) > > So I expect the following note to

[O] Strange behavior with block agendas

2015-02-06 Thread Yuri Niyazov
If a block agenda exists, with say, agenda on top and todo on the bottom, then by default it opens to "today". It is possible then to press j and select a different date to go to. After that, if we hit "r" to redisplay, we get different behavior: - If the point is in the agenda section of the buf

Re: [O] Strange behavior with block agendas

2015-02-06 Thread Yuri Niyazov
>> If a block agenda exists, with say, agenda on top and todo on the bottom, >> then by default it opens to "today". It is possible then to press j and >> select a >> different date to go to. After that, if we hit "r" to redisplay, we get >> different >> behavior: >> - If the point is in the ag

Re: [O] Bug: 8.2.10 fails to insert diary entry [as opposed to 8.3beta (release_8.3beta-785-gb5d9f4 @ /home/grfz/src/org-mode/lisp/)]

2015-02-06 Thread Yuri Niyazov
On Tue, Feb 3, 2015 at 1:24 PM, Gregor Zattler wrote: >> Could you provide a more complete backtrace, possibly with >> a non-compiled Org (C-u M-x org-reload)? > > Sorry, I cannot reproduce it any more. Which is strange since > nothing changed on this system with respect to this receipt. > > Sorr

Re: [O] Strange behavior with block agendas

2015-02-09 Thread Yuri Niyazov
any further comment on this? On Fri, Feb 6, 2015 at 11:58 AM, Yuri Niyazov wrote: >>> If a block agenda exists, with say, agenda on top and todo on the bottom, >>> then by default it opens to "today". It is possible then to press j and >>> select a >>&

Re: [O] How to include time when generating timestamp for DEADLINE/SCHEDULE

2015-02-12 Thread Yuri Niyazov
you can just type in the time in the mini buffer. On Thu, Feb 12, 2015 at 12:17 PM, Subhan Michael Tindall wrote: > Both C-c C-d (deadline) and C-d C-s (schedule) bring up a calendar in the > mini-buffer to pick a date > > This is great > > However, there doesn’t appear to be any way to include a

Re: [O] How to include time when generating timestamp for DEADLINE/SCHEDULE

2015-02-12 Thread Yuri Niyazov
On Thu, Feb 12, 2015 at 4:16 PM, Subhan Michael Tindall wrote: > Not really an acceptable answer. Having to use 2 different interface methods > to fill in one time/date stamp value is confusing and cludgy. Plus, if you > type in a full time/date stamp + time, you can still move around in the >

Re: [O] How to include time when generating timestamp for DEADLINE/SCHEDULE

2015-02-12 Thread Yuri Niyazov
PS It is clear that you can *both* select the correct date using calendar, and *then* type in the time while still in the calendar selector, right? On Thu, Feb 12, 2015 at 5:36 PM, Yuri Niyazov wrote: > On Thu, Feb 12, 2015 at 4:16 PM, Subhan Michael Tindall > wrote: >> Not really a

Re: [O] How to include time when generating timestamp for DEADLINE/SCHEDULE

2015-02-14 Thread Yuri Niyazov
On Fri, Feb 13, 2015 at 5:25 AM, Charles Millar wrote: >> Why bother with the arrow keys at all? I have a capture template for >> appointments and deadlines which requests date and time. Calendar is called. >> Rather than arrow keys I type the datetime (optional duration) and >> then enter - e.g.

Re: [O] Why not push?

2015-02-15 Thread Yuri Niyazov
On Sun, Feb 15, 2015 at 2:38 AM, Nicolas Goaziou wrote: > No. Good luck with refactoring "org.el". ;) Could you clarify what you think are the biggest issues with refactoring org.el ?

Re: [O] how to get images support in Emacs on Windows?

2015-02-19 Thread Yuri Niyazov
It's not called "image.dll", which may be a source of confusion. Here are the instructions specifically for PNG images. For each type, a different DLL is required: http://stackoverflow.com/questions/2650041/emacs-under-windows-and-png-files On Thu, Feb 19, 2015 at 3:19 PM, Herbert Sitz wrote: >

[O] Question about logreschedule

2015-02-21 Thread Yuri Niyazov
In org-mode it is possible to log rescheduling information about an item by setting org-log-reschedule to 'time; this results in lines like "- Rescheduled from "2015-01-29 Thu" on [2015-02-10 Tue 20:45]" entered into the Logbook. I am trying to build some performance measurement tools; the general

Re: [O] org-agenda - how to move columns

2015-02-23 Thread Yuri Niyazov
look into org-agenda-prefix-format. However, you can also change the category of your org files by putting #+CATEGORY: MYCAT at the very top of your org files, and that decouples the category (the first column in agenda) from the filename. On Mon, Feb 23, 2015 at 11:59 AM, David Belohrad wrote:

[O] Capture Template Menus

2015-03-29 Thread Yuri Niyazov
What would be required to have Org-Mode support Capture Template Menus? In Custom Agenda Views, it is possible to have a prefix according to an example in the documentation: https://www.gnu.org/software/emacs/manual/html_node/org/Storing-searches.html#Storing-searches ("hl" tags "+home+Lisa

[O] Creating a link to a file using ID

2015-04-23 Thread Yuri Niyazov
I would like to link to a whole file (rather than a heading in that file), but instead of using the path+name, I would like to use an id, so that it survives renames. Is it possible to assign an ID to the whole buffer? I tried doing #+CUSTOM_ID: A948A2E7-F4A0-4F77-8D7A-C6273DA7D734 and #+ID:

[O] Recurse through a directory tree in org-agenda

2015-05-01 Thread Yuri Niyazov
It is common to have something like this in an org configuration: (customize-set-variable 'org-agenda-files '("~/org")) This means that all the org files in ~/org (but not all the org files in subdirectories of "~/org") will be automatically included in the agenda. It seems like a common request

[O] Org-Mode and iCloud Reminders

2015-06-25 Thread Yuri Niyazov
Has anyone had any success with getting Mac OS X Reminders working with org-mode? I found this blog post from a few years ago: http://msnyder.info/posts/2012/05/icloud-reminders-orgmode/ and was wondering if anyone's had much success with that or some other syncing mechanism. Thanks!

Re: [O] Org-Mode and iCloud Reminders

2015-06-25 Thread Yuri Niyazov
tiny non-haptic > feedback keyboard. > > On Jun 25, 2015, at 19:43, Yuri Niyazov wrote: > > Has anyone had any success with getting Mac OS X Reminders working > with org-mode? I found this blog post from a few years ago: > http://msnyder.info/posts/2012/05/icloud-reminders-orgmode/