From 22ca956b821e44802446d1ee8e412d6790ce17f4 Mon Sep 17 00:00:00 2001 From: Yoni Rabkin Date: Wed, 20 Aug 2014 15:51:38 -0400 Subject: Add thing-at-point to interactive input. Patch by Daimrod . Change too small for copyright papers. --- lisp/emms-source-file.el | 3 ++- lisp/emms-source-playlist.el | 15 ++++++++++----- 2 files changed, 12 insertions(+), 6 deletions(-) (limited to 'lisp') diff --git a/lisp/emms-source-file.el b/lisp/emms-source-file.el index 97b7a39..660cbd5 100644 --- a/lisp/emms-source-file.el +++ b/lisp/emms-source-file.el @@ -104,7 +104,8 @@ user." (interactive (list (read-file-name "Play file: " emms-source-file-default-directory emms-source-file-default-directory - t))) + t + (thing-at-point 'filename)))) (if (file-directory-p file) (emms-source-directory file) (emms-playlist-insert-track diff --git a/lisp/emms-source-playlist.el b/lisp/emms-source-playlist.el index 0bcc548..0054f43 100644 --- a/lisp/emms-source-playlist.el +++ b/lisp/emms-source-playlist.el @@ -174,7 +174,8 @@ See `emms-source-playlist-formats' for a list of supported formats." (interactive (list (read-file-name "Playlist file: " emms-source-file-default-directory emms-source-file-default-directory - t))) + t + (thing-at-point 'filename)))) (mapc #'emms-playlist-insert-track (with-temp-buffer (emms-insert-file-contents file) @@ -231,7 +232,8 @@ OUT should be the buffer where tracks are stored in the native EMMS format." (interactive (list (read-file-name "Playlist file: " emms-source-file-default-directory emms-source-file-default-directory - t))) + t + (thing-at-point 'filename)))) (mapc #'emms-playlist-insert-track (with-temp-buffer (emms-insert-file-contents file) @@ -304,7 +306,8 @@ OUT should be the buffer where tracks are stored in m3u format." (interactive (list (read-file-name "Playlist file: " emms-source-file-default-directory emms-source-file-default-directory - t))) + t + (thing-at-point 'filename)))) (mapc #'emms-playlist-insert-track (with-temp-buffer (emms-insert-file-contents file) @@ -389,7 +392,8 @@ OUT should be the buffer where tracks are stored in pls format." (interactive (list (read-file-name "Playlist file: " emms-source-file-default-directory emms-source-file-default-directory - t))) + t + (thing-at-point 'filename)))) (mapc #'emms-playlist-insert-track (with-temp-buffer (emms-insert-file-contents file) @@ -437,7 +441,8 @@ See `emms-source-playlist-formats' for a list of supported formats." (interactive (list (read-file-name "Playlist file: " emms-source-file-default-directory emms-source-file-default-directory - t))) + t + (thing-at-point 'filename)))) (emms-playlist-insert-track (emms-track 'playlist (expand-file-name file)))) -- cgit v1.2.3