Probably MELPA hadn’t picked up my changes when you tried it. Maybe update the lckage and try again.
this post was submitted on 30 Oct 2023
1 points (66.7% liked)
Emacs
368 readers
1 users here now
A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!
Get Emacs
Rules
- Posts should be emacs related
- Be kind please
- Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.
Emacs Resources
Emacs Tutorials
- Beginner’s Guide to Emacs
- Absolute Beginner's Guide to Emacs
- How to Learn Emacs: A Hand-drawn One-pager for Beginners
Useful Emacs configuration files and distributions
Quick pain-saver tip
founded 2 years ago
MODERATORS
As a macOS user, I typically glue these dired things via dwim-shell-command (disclosure, I wrote that).
Not super tested, but I added dwim-shell-commands-macos-add-to-photos to dwim-shell-commands.el (the optional part of the package).
(defun dwim-shell-commands-macos-add-to-photos ()
"Add to Photos.app."
(interactive)
(dwim-shell-command-on-marked-files
"Add to Photos.app"
"osascript <>\"
end tell
EOF"
:silent-success t
:utils "osascript"
:on-completion (lambda (buffer process)
(if-let ((success (= (process-exit-status process) 0)))
(start-process "Open Photos" nil "open" "-a" "Photos")
(switch-to-buffer buffer)))))
- Select 1 or multiple photos from dired
- M-x dwim-shell-commands-macos-add-to-photos
ps. This also works on current buffer if you're viewing an image in a buffer.