emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] "Which function for creating the link?


From: Nick Dokos
Subject: Re: [O] "Which function for creating the link?
Date: Thu, 02 Mar 2017 11:01:29 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux)

Uwe Brauer <address@hidden> writes:

> org-store-link-functions is a variable defined in ‘org.el’.
> Its value is
>
>
> (org-mairix-store-gnus-link org-rmail-store-link org-mhe-store-link
> org-irc-store-link org-info-store-link org-gnus-store-link
> org-docview-store-link org-bibtex-store-link org-bbdb-store-link
> org-w3m-store-link)
>
> And org-store link takes the first entry. I prefer him to take
> org-gnus-store-link instead, how can I do this??
>

You are probably either loading explicitly org-mairix (from contrib)
or requiring 'org-mairix (explicitly or implicitly).

Try

   emacs -q -l /path/to/minimal.el

and evaluate

  (org-store-link-functions)

The returned list should not contain org-mairix-store-gnus-link.

Then

  (load-file "/path/to/org-mode/contrib/lisp/org-mairix.el")

and evaluate

  (org-store-link-functions)

The returned list will now contain org-mairix-store-gnus-link.

If you cannot find the place where org-mairix gets loaded (e.g with
find and grep), by using this method, you could bisect through your
init files to find it.

>
> I have the feeling that this is relatively new (say from 2016).

I don't know why you are seeing it now, but I don't think anything
has changed in the mairix space for years.

-- 
Nick




reply via email to

[Prev in Thread] Current Thread [Next in Thread]