diff options
author | Thanos Apollo <[email protected]> | 2023-08-01 14:09:43 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-08-01 14:11:42 +0300 |
commit | 7c1ce56dcf801db6bd1ee4ac867bdd634c8573ba (patch) | |
tree | bf3c7d335e40236006f4fb601ec7c0c5a183150a | |
parent | 203388dd4648e32f1f5c4e64b315207540ea9454 (diff) |
yeetube-update/insert-info: Remove yeetube-player
-rw-r--r-- | yeetube.el | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -400,10 +400,7 @@ then run this command interactively." (insert "\n\n** Info" (format "\nDownload Directory: %s" yeetube-download-directory) - (format "\nDownload as audio format: %s" yeetube-download-audio-format) - (if yeetube-player - (format "\nYeetube Player: %s" yeetube-player) - (format "\nYeetube Player: mpv not found. /Set this value manually or install mpv/"))) + (format "\nDownload as audio format: %s" yeetube-download-audio-format)) (when yeetube-display-info-keys (insert "\n\n*** Keybindings" @@ -457,7 +454,6 @@ WHERE indicates where in the buffer the update should happen. OPERATION & WHERE are required to work with ='add-variable-watcher." (let ((to-change (pcase symbol-name - ('yeetube-player "Yeetube Player:") ('yeetube-download-directory "Download Directory:") ('yeetube-download-audio-format "Download as audio format:") ('yeetube-query-url "searching:"))) @@ -492,7 +488,6 @@ OPERATION & WHERE are required to work with ='add-variable-watcher." ;; Variable to watch (add-variable-watcher 'yeetube-download-directory #'yeetube-update-info) -(add-variable-watcher 'yeetube-player #'yeetube-update-info) (add-variable-watcher 'yeetube-download-audio-format #'yeetube-update-info) (add-variable-watcher 'yeetube-query-url #'yeetube-update-info) (add-variable-watcher 'yeetube-saved-videos #'yeetube-update-saved-videos-list) |