diff options
Diffstat (limited to 'org-fc-audio.el')
-rw-r--r-- | org-fc-audio.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/org-fc-audio.el b/org-fc-audio.el index 2774603..bd2569f 100644 --- a/org-fc-audio.el +++ b/org-fc-audio.el @@ -76,6 +76,13 @@ "Play the audio of the current card. Look up the file from PROPERTY. If SPEED is non-nil, play back the file at the given speed." + (interactive + (list + (completing-read + "Type: " + `(,org-fc-audio-before-setup-property + ,org-fc-audio-after-setup-property + ,org-fc-audio-after-flip-property)))) (if-let ((file (org-entry-get (point) property))) (org-fc-audio-play-file file (or speed 1.0)))) |