emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Tiny bugs (and org-toggle-comments?)
@ 2006-11-21 17:01 Bastien
  2006-11-22  5:17 ` Carsten Dominik
  0 siblings, 1 reply; 4+ messages in thread
From: Bastien @ 2006-11-21 17:01 UTC (permalink / raw)
  To: emacs-orgmode

Hi Carsten,

- <bbdb:...> links are not recognized as links in the agenda buffer

- M-TAB expands ":ta"  to ":tag:" (which is correct) but 
  M-TAB expands ":tag" to ":tag" (":" lacking)

- Comment regions are not filled (auto-fill is just ignored).  Maybe
  that's not a bug, but I think we should be able to turn filling on
  for comment regions if needed.

  Since i'm on this, What about org-toggle-comment-at-point that would
  hide/show comment under the point? org-toggle-comments that would do
  this on the whole buffer? Not sure about this though.

- Time clocking :

  When clocking in-and-out on a single task several times, it may end
  up in a long list of "CLOCK: []" lines. We might be only interested
  in the "how much time" we spent, not the exact "when".

  In this case, clocking in would open a temporary "CLOCK:" line, but
  clocking out would just leave a single "TIME:" line as a summary of
  the time spent.  And maybe this "TIME:" line would also be useful
  for those who want to use the normal CLOCK: system.

  I think it would be great if we could chose between the two
  systems. 
  
- Other C-c C-c capabilities (?)

  C-c C-c on time intervals could update the "=> ..:.." result 

  C-c C-c on other time intervals could display the interval (in the
          minibuffer)

Best regards,

-- 
Bastien

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Tiny bugs (and org-toggle-comments?)
  2006-11-21 17:01 Tiny bugs (and org-toggle-comments?) Bastien
@ 2006-11-22  5:17 ` Carsten Dominik
  2006-11-22  7:57   ` Bastien
  0 siblings, 1 reply; 4+ messages in thread
From: Carsten Dominik @ 2006-11-22  5:17 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

Hi Bastien,


On Nov 21, 2006, at 18:01, Bastien wrote:

> Hi Carsten,
>
> - <bbdb:...> links are not recognized as links in the agenda buffer

Links in angular brackets are kept mostly for backward compatibility
in Org-mode.  Please write [[bbdb:...]] instead.

>
> - M-TAB expands ":ta"  to ":tag:" (which is correct) but
>   M-TAB expands ":tag" to ":tag" (":" lacking)

Hmmm, thats right.  Not easy to fix this, but I will put it on my list.

> - Comment regions are not filled (auto-fill is just ignored).  Maybe
>   that's not a bug, but I think we should be able to turn filling on
>   for comment regions if needed.

Yes, even M-q does not work to fill a paragraph of comment.
I'll check into it.

>   Since i'm on this, What about org-toggle-comment-at-point that would
>   hide/show comment under the point? org-toggle-comments that would do
>   this on the whole buffer? Not sure about this though.

You mean to hide this like an outline-subtree????

> - Time clocking :
>
>   When clocking in-and-out on a single task several times, it may end
>   up in a long list of "CLOCK: []" lines. We might be only interested
>   in the "how much time" we spent, not the exact "when".
>
>   In this case, clocking in would open a temporary "CLOCK:" line, but
>   clocking out would just leave a single "TIME:" line as a summary of
>   the time spent.  And maybe this "TIME:" line would also be useful
>   for those who want to use the normal CLOCK: system.

Yes, this would be a good way to keep these lists from growing too much,
which has also bothering me.  I will also put this on my list,
but this will not be in the next version, some time down the road.

> - Other C-c C-c capabilities (?)
>
>   C-c C-c on time intervals could update the "=> ..:.." result
>
>   C-c C-c on other time intervals could display the interval (in the
>           minibuffer)


Hmmm, yes, I'll consider this too.

Thanks!

- Carsten



--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Tiny bugs (and org-toggle-comments?)
  2006-11-22  5:17 ` Carsten Dominik
@ 2006-11-22  7:57   ` Bastien
  2006-11-22 22:55     ` Carsten Dominik
  0 siblings, 1 reply; 4+ messages in thread
From: Bastien @ 2006-11-22  7:57 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 445 bytes --]

Hi,

Carsten Dominik <dominik@science.uva.nl> writes:

> Links in angular brackets are kept mostly for backward compatibility
> in Org-mode.  Please write [[bbdb:...]] instead.

All right, i wasn't aware of this.

>> - M-TAB expands ":ta"  to ":tag:" (which is correct) but
>>   M-TAB expands ":tag" to ":tag" (":" lacking)
>
> Hmmm, thats right.  Not easy to fix this, but I will put it on my
> list.

This small patch is working fine for me.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: org.el.patch --]
[-- Type: text/x-patch, Size: 856 bytes --]

diff -uN /home/guerry/elisp/testing/org/org.el /home/guerry/elisp/testing/org-4.56/org.el
--- /home/guerry/elisp/testing/org/org.el	2006-11-22 08:40:48.000000000 +0100
+++ /home/guerry/elisp/testing/org-4.56/org.el	2006-11-17 08:53:16.000000000 +0100
@@ -5359,11 +5359,9 @@
 	   (pattern (buffer-substring-no-properties beg end))
 	   (completion (try-completion pattern table confirm)))
       (cond ((eq completion t)
-	     (cond ((equal type :opt)
-		    (insert (substring (cdr (assoc (upcase pattern) table))
-				       (length pattern))))
-		   ((equal type :tag)
-		    (insert ":"))))
+	     (if (equal type :opt)
+		 (insert (substring (cdr (assoc (upcase pattern) table))
+				    (length pattern)))))
 	    ((null completion)
 	     (message "Can't find completion for \"%s\"" pattern)
 	     (ding))

Diff finished.  Wed Nov 22 08:46:56 2006

[-- Attachment #3: Type: text/plain, Size: 422 bytes --]


>>   Since i'm on this, What about org-toggle-comment-at-point that would
>>   hide/show comment under the point? org-toggle-comments that would do
>>   this on the whole buffer? Not sure about this though.
>
> You mean to hide this like an outline-subtree????

I meant: make all comment lines visible/invisible, not sure it makes
sense to anyone else - and not sure i'll massively use it anyway ;)

Thanks!

-- 
Bastien

[-- Attachment #4: Type: text/plain, Size: 149 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Tiny bugs (and org-toggle-comments?)
  2006-11-22  7:57   ` Bastien
@ 2006-11-22 22:55     ` Carsten Dominik
  0 siblings, 0 replies; 4+ messages in thread
From: Carsten Dominik @ 2006-11-22 22:55 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode


On Nov 22, 2006, at 8:57, Bastien wrote:

> This small patch is working fine for me.

Indeed.  I am applying the patch, thanks.

- Carsten



--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-11-22 22:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-11-21 17:01 Tiny bugs (and org-toggle-comments?) Bastien
2006-11-22  5:17 ` Carsten Dominik
2006-11-22  7:57   ` Bastien
2006-11-22 22:55     ` Carsten Dominik

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).