From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Tiny bugs (and org-toggle-comments?) Date: Wed, 22 Nov 2006 08:57:16 +0100 Message-ID: <874psrud5v.fsf@tallis.ilo.ucl.ac.uk> References: <87psbg68eu.fsf@tallis.ilo.ucl.ac.uk> <7d991b54c91f21ede68ef2222195bc7b@science.uva.nl> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Gmmyx-0000HP-Ix for emacs-orgmode@gnu.org; Wed, 22 Nov 2006 02:57:23 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Gmmyu-0000F4-CA for emacs-orgmode@gnu.org; Wed, 22 Nov 2006 02:57:22 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gmmyu-0000Eq-59 for emacs-orgmode@gnu.org; Wed, 22 Nov 2006 02:57:20 -0500 Received: from [213.36.80.91] (helo=mail.libertysurf.net) by monty-python.gnu.org with esmtp (Exim 4.52) id 1Gmmyu-00063Q-2Q for emacs-orgmode@gnu.org; Wed, 22 Nov 2006 02:57:20 -0500 In-Reply-To: <7d991b54c91f21ede68ef2222195bc7b@science.uva.nl> (Carsten Dominik's message of "Wed\, 22 Nov 2006 06\:17\:16 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: emacs-orgmode@gnu.org --=-=-= Hi, Carsten Dominik 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. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=org.el.patch 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 --=-=-= >> 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 --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --=-=-=--