diff options
author | Thanos Apollo <[email protected]> | 2023-07-06 09:21:12 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-07-06 09:21:12 +0300 |
commit | 44ea412b45b7838ee786cbb6c368ffb8646729f6 (patch) | |
tree | 3f678e21d695c42eb28ca9b6ed6899582cc432de | |
parent | cd6a5c4b053c4675b50caf765b286e96749955d3 (diff) |
yeetube-insert-content: renames
rename camel-case variables -> proper lisp names using dashes
-rw-r--r-- | yeetube.el | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -134,22 +134,22 @@ Example Usage: (replace-regexp-in-string "'" "'" (replace-regexp-in-string """ "\"" title))) -(defun yeetube-insert-content (prefix url videoTitles videoIds) +(defun yeetube-insert-content (prefix url video-titles video-ids) "Insert video links with titles into the buffer. Arguments: - PREFIX: The prefix string for each link. - URL: The base URL for the YouTube links. -- VIDEOTITLES: A list of video titles. -- VIDEOIDS: A list of video IDs. +- VIDEO-TITLES: A list of video titles. +- VIDEO-IDS: A list of video IDs. For each video ID and video title, inserts a link into the buffer in the format: PREFIX [[URL/watch?v=VIDEOID][VIDEOTITLE ]]" - (cl-loop for (videoId . videoTitle) in - (cl-mapcar #'cons (reverse videoIds) (reverse videoTitles)) + (cl-loop for (video-id . video-title) in + (cl-mapcar #'cons (reverse video-ids) (reverse video-titles)) do (insert (format "%s [[%s/watch?v=%s][%s ]]\n" - prefix url videoId - (yeetube-fix-title videoTitle))))) + prefix url video-id + (yeetube-fix-title video-title))))) (defun yeetube-search (query) "Search for QUERY." |