mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-28 07:44:49 +00:00
org-setup-yank-dnd-handlers: Support MacOS dnd URIs
* lisp/org.el (org-setup-yank-dnd-handlers): MacOS uses "file:/Users/juergenfenn/Desktop/test-file.jpeg" instead of file:/// stype URIs in DND data. Handle this URI style. We do not need to worry about converting the URI - `org--dnd-local-file-handler' uses `dnd-get-local-file-name' that takes care about URI-to-path conversion. Reported-by: Juergen Fenn <jfenn@gmx.net> Link: https://orgmode.org/list/875xur1aql.fsf@localhost
This commit is contained in:
parent
671ca44df0
commit
0477df8aab
15
lisp/org.el
15
lisp/org.el
@ -20703,12 +20703,15 @@ it has a `diary' type."
|
||||
;;; Yank media handler and DND
|
||||
(defun org-setup-yank-dnd-handlers ()
|
||||
"Setup the `yank-media' and DND handlers for buffer."
|
||||
(setq-local dnd-protocol-alist
|
||||
(cons (cons "^file:///"
|
||||
(if (>= emacs-major-version 30)
|
||||
#'org--dnd-multi-local-file-handler
|
||||
#'org--dnd-local-file-handler))
|
||||
dnd-protocol-alist))
|
||||
(let ((handler (if (>= emacs-major-version 30)
|
||||
#'org--dnd-multi-local-file-handler
|
||||
#'org--dnd-local-file-handler)))
|
||||
(setq-local dnd-protocol-alist
|
||||
(append
|
||||
(list (cons "^file:///" handler)
|
||||
(cons "^file:/[^/]" handler)
|
||||
(cons "^file:[^/]" handler))
|
||||
dnd-protocol-alist)))
|
||||
(when (fboundp 'yank-media-handler)
|
||||
(yank-media-handler "image/.*" #'org--image-yank-media-handler)
|
||||
;; Looks like different DEs go for different handler names,
|
||||
|
Loading…
Reference in New Issue
Block a user