From 6faf60a01ec5287f9051fc9a2d80d383db6d4183 Mon Sep 17 00:00:00 2001 From: Matthew Date: Fri, 20 Dec 2019 13:32:04 -0500 Subject: [PATCH] Prompt eaf-open again after initial startup --- eaf.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eaf.el b/eaf.el index 2bc0cfc..5b35ec8 100644 --- a/eaf.el +++ b/eaf.el @@ -7,7 +7,7 @@ ;; Copyright (C) 2018, Andy Stewart, all rights reserved. ;; Created: 2018-06-15 14:10:12 ;; Version: 0.5 -;; Last-Updated: Fri Dec 20 12:26:06 2019 (-0500) +;; Last-Updated: Fri Dec 20 13:31:58 2019 (-0500) ;; By: Mingde (Matthew) Zeng ;; URL: http://www.emacswiki.org/emacs/download/eaf.el ;; Keywords: @@ -965,7 +965,8 @@ When called interactively, URL accepts a file that can be opened by EAF." ;; if no match buffer found, call `eaf--open-internal'. (if exists-eaf-buffer (eaf--display-app-buffer app-name exists-eaf-buffer) - (eaf--open-internal url app-name arguments))) + (eaf--open-internal url app-name arguments) + (message "EAF - Opening %s with EAF-%s..." url app-name))) ;; Record user input, and call `eaf--open-internal' after receive `start_finish' signal from server process. (setq eaf-first-start-url url) (setq eaf-first-start-app-name app-name)