diff options
author | Thanos Apollo <[email protected]> | 2024-02-25 04:32:22 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-02-25 04:32:22 +0200 |
commit | f1d8cb5e5590497d5dc8fc80414fbc5a19a41b86 (patch) | |
tree | 96de6db034780108d8d148fe6c538c5901fb2710 | |
parent | 6b2ad1fffe759494075793ccb53c17ca2dc2cb33 (diff) |
yeetube-search: download thumbnails & use pop-to-buffer
-rw-r--r-- | yeetube.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -346,11 +346,11 @@ This is used to download thumbnails from `yeetube-content', within (decode-coding-region (point-min) (point-max) 'utf-8) (goto-char (point-min)) (toggle-enable-multibyte-characters) - (yeetube-get-content))) - ;; (yeetube-get-thumbnails yeetube-content) ;; download thumbnails + (yeetube-get-content)) + (yeetube-get-thumbnails yeetube-content)) ;; download thumbnails ;; unfortunately we can't use images them with tabulated list (with-current-buffer - (switch-to-buffer (get-buffer-create (concat "*yeetube*"))) + (pop-to-buffer-same-window "*yeetube*") (yeetube-mode))) ;;;###autoload |