diff options
Diffstat (limited to 'media')
-rw-r--r-- | media/espotify.org | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/media/espotify.org b/media/espotify.org index eb41a9d..6c07259 100644 --- a/media/espotify.org +++ b/media/espotify.org @@ -346,7 +346,7 @@ Let's start with an umbrella customization group: #+begin_src emacs-lisp (defun espotify-marginalia-annotate (cand) - (when-let (x (espotify--item (cand))) + (when-let (x (espotify--item cand)) (marginalia--fields ((alist-get 'type x "") :face marginalia-mode :width 10) ((or (alist-get 'name (car (alist-get 'artists x))) "") @@ -374,6 +374,12 @@ Let's start with an umbrella customization group: #+end_src +* Post-amble :notes: + + #+begin_src emacs-lisp + (provide 'espotify) + #+end_src + * Footnotes [fn:1] This is an elegant strategy i first learnt about in SICP, many, |