Re-add missing play at point function for mpdel #emacs

This commit is contained in:
Colin Powell
2019-10-18 08:45:04 -04:00
parent 89cbb156dc
commit 024afb7d53

View File

@ -175,3 +175,10 @@
(load! "+mail") ;; Mail stuff
(load! "+ranger")
(load! "+wttrin") ;; Weather config
(defun mpdel-playlist-play ()
"Start playing the song at point."
(interactive)
(if (derived-mode-p 'mpdel-playlist-current-playlist-mode)
(libmpdel-play-song (navigel-entity-at-point))
(mpdel-core-insert-current-playlist)))