diff options
author | jao <jao@gnu.org> | 2021-02-13 02:11:35 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-02-13 02:11:35 +0000 |
commit | 480c556e4f34480aff46375a346736b3ba12eb60 (patch) | |
tree | 316039508c67054b8bebac13c69d26c64fe6ff60 | |
parent | 0f2cfc03426a37574cc9588e71fcd0817b319f87 (diff) | |
download | elibs-480c556e4f34480aff46375a346736b3ba12eb60.tar.gz elibs-480c556e4f34480aff46375a346736b3ba12eb60.tar.bz2 |
espotify: typos
-rw-r--r-- | lib/media/espotify.org | 11 |
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! |