Created
May 22, 2011 06:22
-
-
Save tototoshi/985222 to your computer and use it in GitHub Desktop.
emmsで聞いてる曲をとってくる
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun my-emms-current-track-path () | |
"get current track file as fullpath" | |
(emms-track-description (emms-playlist-current-selected-track))) | |
(defun my-insert-current-track () | |
(interactive) | |
(multiple-value-bind (artist album song) | |
(last (split-string (my-emms-current-track-path) "/") 3) | |
(insert (format "きいてる %s - %s from %s" song artist album)))) | |
;; M-x my-insert-current-track | |
;; > きいてる 10 Smackwater Jack.m4a - Carole King from Tapestry |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment