Re: [Orgmode] Re: Org now fontifies code blocks

2010-10-28 Thread Jules Bean
 
 Hi Tom,
 
 I've used fontification in Org code blocks constantly for a couple of
 months now, and I do not agree that there are any editing or unfolding
 delays which should deter typical Org users from using fontified src
 blocks. In typical usage I do not experience any delays whatsoever (my
 blocks tend to be fewer than 100 lines in length).
 

Is Tom perhaps using OSX? I found absurd fontification delays on OSX
for various things (*clock task select* was the worst, IIRC) until
somebody advised me to (setq font-lock-verbose nil), and that fixed it
completely. 

I don't think it's the actual fontification that's slow, I think it's
the (message) that is telling you what it's doing.

Jules



___
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


Re: [Orgmode] [bug] message not present in default value of org-link-types

2010-09-17 Thread Jules Bean
On Fri, Sep 17, 2010 at 09:08:00AM +0200, David Maus wrote:
 Manually adding it to org-link-types makes it work correctly. For me,
 anyway.
 
 True enough.  But what is a message: link?  Can you give an example
 of its usage?

message:87hbhosv8v.wl%dm...@ictsoc.de

or 

message://87hbhosv8v.wl%dm...@ictsoc.de

(I'm not sure which is technically correct, they both work here)

is a link, by message-id, to the email I'm replying to.

My hazy memory says this URL schema originates in the first version of
netscape which supported mail+news, it enabled you to link directly to
a particular message (in an email folder or a newsgroup). It was also
how netscape implemented the In-Reply-To and References headers,
which were clickable and took you to the messages concerned.

I can't substantiate that memory, though. The only references I find
on the internet are to OSX Leopard and Apple Mail (which does happen
to be what I'm using it with).

Wikipedia thinks that the correct IANA form is 'mid:', but that
doesn't actually work on my system.

Jules


___
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] [bug] message not present in default value of org-link-types

2010-09-16 Thread Jules Bean
The link-type message is one of the ones org handles by default, it
is an explicit case in org-open-at-point, much like http and it is
handled by the following code:

((member type '(message))
   (browse-url (concat type : path)))

However it is not included in the default value of org-link-types:

(defvar org-link-types '(http https ftp mailto file news
   shell elisp doi))

...and therefore it doesn't work when clicked/followed.

Manually adding it to org-link-types makes it work correctly. For me,
anyway.

Jules

___
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] [BUG] Org-capture breaks if captured-to file is open in a narrowed buffer

2010-09-09 Thread Jules Bean
If I run org-capture with the template:

(t Todo entry (file+headline
/Users/jules/work/TODO.org Tasks) * TODO %?
  (Captured at %u)
  %i
  %a
)

whilst I have narrowed (using, e.g., org-narrow-to-subtree) the buffer
that contains TODO.org, a new * Tasks headline is inserted at the
end of my narrowing and the new entry is added there, which messes up
the hierarchy of the file.

Thanks,

Jules

___
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