emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: John Kitchin <jkitchin@andrew.cmu.edu>
To: stardiviner <numbchild@gmail.com>
Cc: Org Mode <emacs-orgmode@gnu.org>
Subject: Re: [Question] why my org-link-set-parameters :face function does not work?
Date: Tue, 19 May 2020 09:23:50 -0400	[thread overview]
Message-ID: <CAJ51ETpJGLD0hRCy53m-n=tgsGj-HXHeZNsqC9y=+fxYOWGfhA@mail.gmail.com> (raw)
In-Reply-To: <87wo58jch2.fsf@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 2269 bytes --]

The face function only takes the link path, which is a string. you cannot
use org-element-property on it.

Maybe you want something like this:

#+begin_src emacs-lisp
(defun org-link-beautify-face (path)
  "Set link face colors."
  (message "beautifying")
  (if (and (not (file-remote-p path))
  (file-exists-p (expand-file-name path)))
      'org-link
    'org-warning))

;;; DEBUG
(org-link-set-parameters
 "file"
 :face #'org-link-beautify-face)
#+end_src

John

-----------------------------------
Professor John Kitchin
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
@johnkitchin
http://kitchingroup.cheme.cmu.edu



On Tue, May 19, 2020 at 9:12 AM stardiviner <numbchild@gmail.com> wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA256
>
>
> Bellowing is my source code, it does not work. I'm wondering why?
>
> #+begin_src emacs-lisp
> (defun org-link-beautify-face (link)
>   "Set link face colors."
>   (let ((raw-link (org-element-property :raw-link link))
>         (type (org-element-property :type link))
>         (path (org-element-property :path link)))
>     (pcase type
>       ;; ("https" )
>       ;; ("http" )
>       ("file"
>        (if (and (not (file-remote-p path))
>                 (file-exists-p (expand-file-name path)))
>            'org-link 'org-warning)))))
>
> ;;; DEBUG
> (org-link-set-parameters
>  "file"
>  :face #'org-link-beautify-face)
> #+end_src
>
> - --
> [ 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
>
> -----BEGIN PGP SIGNATURE-----
>
> iQFIBAEBCAAyFiEE8J9lDX1nSBmJJZFAG13xyVromsMFAl7D2xkUHG51bWJjaGls
> ZEBnbWFpbC5jb20ACgkQG13xyVromsMfHAgAjnoQlzdHlcKL/rBVBLlkmMITh7f5
> 6SxRw9sS1BagIma+APiuy+A4O4fSDLyzUMDg+Sg/C+vNu3QC2BM7ipBYNXtWcX1M
> oPZj8loMrnISTIK51j2+9Pg0iOP1aZSvZqwA0p1mK2aZURBXWl7qDkVxD2oWji5P
> qCBVr9ZFUloGSl7PtZTlOtsCgTCGHvnfvnk7vqxY4beuavQgaRSWUCsVDDO0c/M6
> 5CSzxobElB3Y68fQ2awuQwRGCzfEvRkGShHp3Raug+EJ5Ew+MYEi6wILfPxYF2WR
> VJjuxAxseBuiIjYjF91xzbR7mSZQsvB1gNttLYb3uQ/jrgj0HOQDo5Jmtg==
> =4fE9
> -----END PGP SIGNATURE-----
>
>

[-- Attachment #2: Type: text/html, Size: 3329 bytes --]

  reply	other threads:[~2020-05-19 13:25 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-19 13:11 [Question] why my org-link-set-parameters :face function does not work? stardiviner
2020-05-19 13:23 ` John Kitchin [this message]
2020-05-19 22:51   ` stardiviner
2020-05-20 14:41     ` John Kitchin
2020-05-20 22:47       ` stardiviner

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

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAJ51ETpJGLD0hRCy53m-n=tgsGj-HXHeZNsqC9y=+fxYOWGfhA@mail.gmail.com' \
    --to=jkitchin@andrew.cmu.edu \
    --cc=emacs-orgmode@gnu.org \
    --cc=numbchild@gmail.com \
    /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 public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).