diff options
Diffstat (limited to '')
-rw-r--r-- | emacsconf.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/emacsconf.el b/emacsconf.el index c873254..eb945b5 100644 --- a/emacsconf.el +++ b/emacsconf.el @@ -296,9 +296,10 @@ FILENAME specifies an extra string to add to the file prefix if needed." (interactive (list (emacsconf-complete-talk))) (setq search (if (stringp search) (emacsconf-get-slug-from-string search) (plist-get search :slug))) - (find-file (expand-file-name - (concat search ".md") - (expand-file-name "talks" (expand-file-name emacsconf-year emacsconf-directory))))) + (find-file-other-window + (expand-file-name + (concat search ".md") + (expand-file-name "talks" (expand-file-name emacsconf-year emacsconf-directory))))) (defun emacsconf-find-caption-directives-from-slug (search) (interactive (list (emacsconf-complete-talk))) |