From: Bastien <bzg@altern.org>
To: Carsten Dominik <dominik@science.uva.nl>
Cc: emacs-orgmode@gnu.org
Subject: Re: Tiny bugs (and org-toggle-comments?)
Date: Wed, 22 Nov 2006 08:57:16 +0100 [thread overview]
Message-ID: <874psrud5v.fsf@tallis.ilo.ucl.ac.uk> (raw)
In-Reply-To: <7d991b54c91f21ede68ef2222195bc7b@science.uva.nl> (Carsten Dominik's message of "Wed\, 22 Nov 2006 06\:17\:16 +0100")
[-- 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
next prev parent reply other threads:[~2006-11-22 7:57 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
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 [this message]
2006-11-22 22:55 ` Carsten Dominik
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=874psrud5v.fsf@tallis.ilo.ucl.ac.uk \
--to=bzg@altern.org \
--cc=dominik@science.uva.nl \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.