diff options
author | Thanos Apollo <[email protected]> | 2023-07-01 08:37:30 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-07-01 08:39:20 +0300 |
commit | 0491065bf79c6f00a0a4efcb74f8738b6b76bd55 (patch) | |
tree | 09cb8d7702d776198a928da24a64a874caa0cfe5 | |
parent | 383bcc82645842a54b6e38e156d39425b4536c77 (diff) |
style
-rw-r--r-- | yeetube.el | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -98,16 +98,16 @@ Example Usage: (end (search-forward ",")) (title (buffer-substring (+ start 3) (- end 4)))) (push title videoTitles)))))) - (with-current-buffer (switch-to-buffer (get-buffer-create "*Yeetube Search*")) (setq buffer-read-only nil) (erase-buffer) (org-mode) (insert "\n* Search Results: \n \n") - (cl-loop for (videoId . videoTitle) in (cl-mapcar #'cons (reverse videoIds) (reverse videoTitles)) - do (insert (format "+ [[https://www.youtube.com/watch?v=%s][%s]]\n" - videoId videoTitle))) + (cl-loop for (videoId . videoTitle) in + (cl-mapcar #'cons (reverse videoIds) (reverse videoTitles)) + do (insert (format "+ [[https://www.youtube.com/watch?v=%s][%s ]]\n" + videoId videoTitle))) (setq buffer-read-only t)))) (defun yt-download-video () |