We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a125cb commit 6d670e1Copy full SHA for 6d670e1
eaf.el
@@ -1542,6 +1542,13 @@ You can configure a blacklist using `eaf-find-file-ext-blacklist'"
1542
(when (or (equal new-buff origin-buff) (equal app-name mode-name))
1543
(setq finished t)))))
1544
1545
+(defun eaf-share-path-or-url ()
1546
+ "Share the current file path or web URL as QRCode."
1547
+ (interactive)
1548
+ (if (ignore-errors (require 'eaf-airshare))
1549
+ (eaf-open (eaf-get-path-or-url) "airshare")
1550
+ (message "You should install EAF application 'airshare' first.")))
1551
+
1552
;;;;;;;;;;;;;;;;;;;; Advice ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1553
1554
;; FIXME: In the code below we should use `save-selected-window' (or even
0 commit comments