This commit is contained in:
Chris Cochrun 2024-12-12 09:57:03 -06:00
parent ab32fb0ad4
commit 64ea9029b9
2 changed files with 6 additions and 6 deletions

View file

@ -4875,11 +4875,11 @@ With empv we can perhaps control mpv much more fine grainly and even search yout
(general-auto-unbind-keys) (general-auto-unbind-keys)
(add-hook 'empv-youtube-results-mode-hook #'evil-normal-state) (add-hook 'empv-youtube-results-mode-hook #'evil-normal-state)
(defun mpv-start (video other) (defun mpv-start (args video)
"Load a video from mast into empv" "Load a video from mast into empv"
(message video) (message video)
(message other) (message args)
(empv-play-or-enqueue file)) (empv-play-or-enqueue video))
(defun chris/empv-yt-dlp () (defun chris/empv-yt-dlp ()
"Download the current video and and play it" "Download the current video and and play it"

View file

@ -3541,11 +3541,11 @@ targets."
(general-auto-unbind-keys) (general-auto-unbind-keys)
(add-hook 'empv-youtube-results-mode-hook #'evil-normal-state) (add-hook 'empv-youtube-results-mode-hook #'evil-normal-state)
(defun mpv-start (video other) (defun mpv-start (args video)
"Load a video from mast into empv" "Load a video from mast into empv"
(message video) (message video)
(message other) (message args)
(empv-play-or-enqueue file)) (empv-play-or-enqueue video))
(defun chris/empv-yt-dlp () (defun chris/empv-yt-dlp ()
"Download the current video and and play it" "Download the current video and and play it"