From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp0 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id JZqNFcJ5yF4qJAAA0tVLHw (envelope-from ) for ; Sat, 23 May 2020 01:17:54 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp0 with LMTPS id oAHGEMJ5yF57NAAA1q6Kng (envelope-from ) for ; Sat, 23 May 2020 01:17:54 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id AB4229402A2 for ; Sat, 23 May 2020 01:17:53 +0000 (UTC) Received: from localhost ([::1]:38318 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jcInQ-0006Rg-EQ for larch@yhetil.org; Fri, 22 May 2020 21:17:52 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39098) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jcImi-0005zX-UE for emacs-orgmode@gnu.org; Fri, 22 May 2020 21:17:08 -0400 Received: from [183.249.132.153] (port=1056 helo=localhost) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jcImh-00009T-M0 for emacs-orgmode@gnu.org; Fri, 22 May 2020 21:17:08 -0400 Received: by localhost (Postfix, from userid 1000) id 5F0FF241E03; Sat, 23 May 2020 09:16:59 +0800 (HKT) References: <87imgoregv.fsf@gmail.com> <87h7w8dmh7.fsf@nicolasgoaziou.fr> User-agent: mu4e 1.4; emacs 28.0.50 From: stardiviner To: Nicolas Goaziou Subject: Re: [QUESTION] Org "customid" and "coderef" links seems not fontified as other file: link In-reply-to: <87h7w8dmh7.fsf@nicolasgoaziou.fr> Date: Sat, 23 May 2020 09:16:59 +0800 Message-ID: <875zcnbgc4.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable X-Host-Lookup-Failed: Reverse DNS lookup failed for 183.249.132.153 (deferred) Received-SPF: softfail client-ip=183.249.132.153; envelope-from=numbchild@gmail.com; helo=localhost X-detected-operating-system: by eggs.gnu.org: First seen = 2020/05/22 20:56:54 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: 53 X-Spam_score: 5.3 X-Spam_bar: +++++ X-Spam_report: (5.3 / 5.0 requ) BAYES_00=-1.9, DKIM_ADSP_CUSTOM_MED=0.001, FORGED_GMAIL_RCVD=1, FREEMAIL_FROM=0.001, FSL_HELO_NON_FQDN_1=0.001, HELO_LOCALHOST=3.828, NML_ADSP_CUSTOM_MED=0.9, RDNS_NONE=0.793, SPF_SOFTFAIL=0.665, URIBL_BLOCKED=0.001 autolearn=_AUTOLEARN X-Spam_action: reject X-BeenThere: emacs-orgmode@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: numbchild@gmail.com Cc: Org Mode Errors-To: emacs-orgmode-bounces+larch=yhetil.org@gnu.org Sender: "Emacs-orgmode" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=fail reason="SPF not aligned (relaxed), No valid DKIM" header.from=gmail.com (policy=none); spf=pass (aspmx1.migadu.com: domain of emacs-orgmode-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=emacs-orgmode-bounces@gnu.org X-Spam-Score: 1.59 X-TUID: PZBNhyv1aPuq =2D----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Nicolas Goaziou writes: > Hello, > > stardiviner writes: > >> I have following minimal testing code: >> >> #+begin_src emacs-lisp >> (defun org-link-beautify (start end path bracketp) >> "Display icon for the Org link type." >> (message >> (format "start: %s, end: %s, path: %s, bracketp: %s" start end path b= racketp))) >> >> (dolist (link-type (mapcar 'car org-link-parameters)) >> (org-link-set-parameters link-type :activate-func #'org-link-beautif= y)) >> #+end_src >> >> The ~message~ does not print parameter values at all. I guess those "cus= tomid" >> [[#Usage] and "coderef" (coderef) are different with "file:" etc links. = Is this >> true? Here is my complete source code I want to try fontify customid and= coderef >> links. >> >> https://github.com/stardiviner/org-link-beautify/blob/master/org-link-be= autify.el#L67 >> >> Is there any way to fix this problem? > > [[#cusom]], [[*headline]], [[(coderef)]] or, simply [[target]], are > internal links, with a special syntax. In particular, they do not go > through the `org-link-parameters' process. > > We could integrate them in that variable, i.e., extract the "follow" > function from `org-link-open', handle completion, storage, with > dedicated functions, etc. That's a good solution, will be simple for future links manipulation. > > Help welcome. Sure, anything I can help you can say. > > Meanwhile, your best bet is to defadvice `org-activate-links'. I read the function `org-activate-links' source code, I guess you mean I can advice on the `properties' let-binding variable. Add `'display' text proper= ty, right? I don't know how to add advice for this functionality. Do you have a= ny sample code for hinting? I will be much thankful. Regards, =2D --=20 [ stardiviner ] I try to make every word tell the meaning that I want to express. Blog: https://stardiviner.github.io/ IRC(freenode): stardiviner, Matrix: stardiviner GPG: F09F650D7D674819892591401B5DF1C95AE89AC3 =20=20=20=20=20=20 =2D----BEGIN PGP SIGNATURE----- iQFIBAEBCAAyFiEE8J9lDX1nSBmJJZFAG13xyVromsMFAl7IeYsUHG51bWJjaGls ZEBnbWFpbC5jb20ACgkQG13xyVromsNjbggAlcDuPz9vXMC62NSZYf0WRIwD0893 UTsRr8sLlVWtIQV7eZ764mDrd7uOwzNnYTcBS2MbopzLs7sBRg4i6hmqKhAJFCYf RuNJNnWg8oNQhiOTuN7eBRMIIv7k741T5H/8F4MdzX3KvtXhjoNjFm2BUdtwtWLl UMAbazuRaDtjY3+sPtcGkXk6ZmkNtCh3LoPMYkfeq4dGXWantvlxDO6EYoJI+Klm mPlqKXRSsVaZLbzxqAuqrQhIZog2gq+0nla2uqKTAocdNtTvWGqtlEbMd5p/BYB3 f/YGeFfJH5FeXIiuxZuFK83sVtpf1H3jtenHWQciuj+sqKgRN9acOi+bdg=3D=3D =3DtMva =2D----END PGP SIGNATURE-----