summaryrefslogtreecommitdiffhomepage
path: root/lib/media
diff options
context:
space:
mode:
Diffstat (limited to 'lib/media')
-rw-r--r--lib/media/espotify.org11
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/media/espotify.org b/lib/media/espotify.org
index 0558a4d..ff5413a 100644
--- a/lib/media/espotify.org
+++ b/lib/media/espotify.org
@@ -1,10 +1,11 @@
#+title: consulting spotify
#+date: <2021-01-08 04:02>
+#+auto_tangle: t
#+filetags: emacs norss
#+PROPERTY: header-args :tangle yes :comments no :results silent
(/Note/: you can tangle this file (e.g., with =C-c C-v t= inside Emacs)
-into three elisp libraries, =espotify.el=, =espotify-consult.el,
+into four elisp libraries: =espotify.el=, =espotify-consult.el=,
=espotify-embark=. and =espotify-counsel=)
We have two kinds of interaction with Spotify: via its HTTP API to
@@ -339,7 +340,7 @@ Let's start with an umbrella customization group:
are pre-defined for us except ~espotify--async-search~, an
asynchronous dispatcher closure that must generate and handle a
list of candidates, responding to a set of action messages (init,
- reset, get, flush, etc.) [fn:1] Here's its definition in our
+ reset, get, flush, etc.). Here's its definition in our
case:
#+begin_src emacs-lisp
@@ -640,9 +641,3 @@ Let's start with an umbrella customization group:
#+begin_src emacs-lisp :tangle espotify-counsel.el
(provide 'espotify-counsel)
#+end_src
-
-* Footnotes
-
-[fn:1] This is an elegant strategy i first learnt about in SICP, many,
-many years ago, and i must say that it is very charming to find it
-around in the wild!