Re: [O] Can I get match count?

2011-04-27 Thread Osamu OKANO
Hi! Thank you for your advice. I made a growl script and set to crontab. It works correctly. #+BEGIN_SRC sh m=`emacsclient -e '(org-agenda-match-count "TODO=\"TODO\"STYLE=\"habit\"+SCHEDULED<=\"\"")'` if [ "0" -ne $m ] then growlnotify \ /t:"org habit" \ /s:true \ /sile

[O] Can I get match count?

2011-04-25 Thread Osamu OKANO
Hi. I' like to know a count of search results. (message "You have %s habits which are out of date." (org-agenda-match-count (tags-todo "STYLE=\"habit\"+SCHEDULED<=\"\""))) Is there any way? Regards.

[Orgmode] Can I save old LOGBOOK for another file?

2011-02-03 Thread Osamu OKANO
Hi. I'd like to keep fit org-agenda-files. But LOGBOOK of habit grows by the day. I'm afraid of LOGBOOK ten years later. Sometimes I'd like to review the past actions thoroughly. So I don't want to reduce LOGBOOK. Can I save old LOGBOOK for another file without losing information? Regards.

Re: [Orgmode] Re: Maximum ranges information lost in org-schedule

2011-02-02 Thread Osamu OKANO
> Fixed. Thanks! I confirmed that bug fixed. Regards. ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] [PATCH] typo in docstring

2011-02-01 Thread Osamu OKANO
Hi. I found some typos in docstrings. Regards. --- diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 057a142..28e0582 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -520,7 +520,7 @@ this one will be used." (defcustom org-agenda-skip-function-global nil "Function to be call

[Orgmode] Re: org-archive-subtree keeping inherited tags

2011-01-28 Thread Osamu OKANO
Hi. On Wed, Jan 26, 2011 at 11:16 PM, Osamu OKANO wrote: > Hi ! > I'd like to org-archive-subtree keeping inherited tags. > Can I do like blow? I have found the solution by defadvice. (defadvice org-archive-subtree (before add-inherited-tags-before-org-archive-subtree acti

[Orgmode] Maximum ranges information lost in org-schedule

2011-01-26 Thread Osamu OKANO
Hi! When I move schedule with org-schdule, timestamp lose information about maximum ranges. * TODO run auto cleaner SCHEDULED: <2011-01-25 Tue .+1d/3d> After postpone. * TODO run auto cleaner SCHEDULED: <2011-01-26 Wed .+1d> Regards. ___ Emacs-o

[Orgmode] org-archive-subtree keeping inherited tags

2011-01-26 Thread Osamu OKANO
Hi ! I'd like to org-archive-subtree keeping inherited tags. Can I do like blow? ===~/org/action.org=== #+FILETAGS: Action * office :@office: ** DONE I'd like to archive this subtree keeping inherited tags *** DONE step1 *** DONE step2 *** DONE step3 ===~/org/a

Re: [Orgmode] Re: TODO type problem on speedbar and imenu.

2010-07-25 Thread Osamu OKANO
Hi. > I won't answer your mail. Sorry. Just having a question: how do you have the > red "V" after the file names?  Is it some sort of versioning marker? I don't set by my effort, but I manage org files with git(vc-git). I can reproduce this on GNU Emacs 23.2.1 (i386-mingw-nt6.0.6002) of 2010-05-

Re: [Orgmode] Re: orgcard.txt in Makefile

2010-05-12 Thread Osamu OKANO
Hi, Carsten. I added a license description in the script. http://gist.github.com/378941 Regards. On Fri, May 7, 2010 at 11:52 PM, Carsten Dominik wrote: > OK, I just removed the line break.  Thanks for writing the script! > Can I have it for the distribution?  In this case you need to > decide

Re: [Orgmode] Re: orgcard.txt in Makefile

2010-05-07 Thread Osamu OKANO
Hi! > Can I have it for the distribution?  In this case you need to > decide which license you want to distribute it under and mention > that in the script file.  Any of the usual OpenSource licenses > will do for this. Delighted! This script is free software; you can redistribute it and/or modify

Re: [Orgmode] Re: orgcard.txt in Makefile

2010-05-07 Thread Osamu OKANO
Hi! > this looks really good!  What is imperfect? This script is linewise. So it can't deal with a new line when an emphasis markup. ==pass== {\tt org-replace-disputed-keys}. ==fail== {\tt org-replace-disputed-keys}. == Regards. ___ Emacs-or

Re: [Orgmode] Re: orgcard.txt in Makefile

2010-04-27 Thread Osamu OKANO
Hi, all. I wrote the (sami) auto convert script to generate from orgcard.tex to orgcard.txt. http://gist.github.com/378941 This script is not perfect, but may boost update of orgcard.txt and org-help.org. On Thu, Apr 15, 2010 at 8:08 PM, Carsten Dominik wrote: > > On Apr 14, 2010, at 10:24 PM, A

[Orgmode] Re: Can I set achive or refile target to date-tree?

2010-04-19 Thread Osamu OKANO
Hi, all. I wrote the defadvice of org-archive-subtree so that I can archive in a date-tree. Please (setq org-archive-location "%s_archive::date-tree"), then you can archive in a date-tree. http://gist.github.com/370843 Regards. ___ Emacs-orgmode mailin

[Orgmode] Can I set achive or refile target to date-tree?

2010-04-16 Thread Osamu OKANO
Hi. I had used ChangeLog format as a diary. So I love the date-tree of org-remember. >("Diary" ?d "* %?\n" "~org/diary.org" date-tree) I'd like to refile or archive to a child of a date-tree too. Can I use date-tree when refile or archive target? Regards. ___