diff options
author | Thanos Apollo <[email protected]> | 2023-08-16 07:37:49 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-08-16 07:37:49 +0300 |
commit | 8dfb92b917ba4694d1713b9e9f635073c2f9e7f2 (patch) | |
tree | 6d6fd3a0038858dc668b52295d41d006269d2530 | |
parent | 6a96cdbc0f0b68a5194a51f235e6f5cb51ea8bf3 (diff) |
fix: title gap at insertion
Since replacements now work properly, there is no need for the gap [%s ]
-rw-r--r-- | yeetube.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -258,7 +258,7 @@ It's recommended you keep it as the default value." (dolist (pair (reverse content)) (let ((videoid (car pair)) (title (yeetube-fix-title (cdr pair)))) - (insert (format "%s [[%s/watch?v=%s][%s ]]\n" + (insert (format "%s [[%s/watch?v=%s][%s]]\n" yeetube-results-prefix yeetube-query-url videoid title)))) (yeetube-insert-info) (setq buffer-read-only t) |