summaryrefslogtreecommitdiffstats
path: root/emacsconf.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacsconf.el')
-rw-r--r--emacsconf.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/emacsconf.el b/emacsconf.el
index 855e2f8..f32c47c 100644
--- a/emacsconf.el
+++ b/emacsconf.el
@@ -1271,5 +1271,16 @@ tracks with the ID in the cdr of that list."
(interactive)
(mapc #'load-library '("emacsconf" "emacsconf-erc" "emacsconf-publish" "emacsconf-stream" "emacsconf-pad")))
+(defun emacsconf-find-talk-file-in-cache (talk filename)
+ (interactive (let ((talk (emacsconf-complete-talk-info)))
+ (list
+ talk
+ (completing-read "File: " (directory-files emacsconf-cache-dir t (plist-get talk :video-slug))))))
+ (find-file filename))
+
+(defun emacsconf-cache-find-file (filename)
+ (interactive (list (read-file-name "File: " (expand-file-name "./" emacsconf-cache-dir) nil t)))
+ (find-file (expand-file-name filename emacsconf-cache-dir)))
+
(provide 'emacsconf)
;;; emacsconf.el ends here