Hi! Thanks for this wonderful package, it is so powerful yet simple to use. I have an issue where the full path to files is not provided. For example the below function is not working because the full path is required and only the filename is retrieved. I'm using macOS 26.5, Emacs 30.2 and dwim-shell-command version 20260123.1157
(defun sc/dwim-shell-command-convert_reveal_presentation_pdf ()
"Convert a reveal.js presentation (HTML) to PDF via decktape"
(interactive)
(dwim-shell-command-on-marked-files
"Convert reveal.js presentation to PDF"
"decktape file:///<<f>> <<fne>>.pdf"
:focus-now nil
:no-progress t
:silent-success t
:utils "decktape"
))
Is my example expected to work for retrieving full paths? If yes any idea what may be causing this issue?
Hi! Thanks for this wonderful package, it is so powerful yet simple to use. I have an issue where the full path to files is not provided. For example the below function is not working because the full path is required and only the filename is retrieved. I'm using macOS 26.5, Emacs 30.2 and dwim-shell-command version 20260123.1157
Is my example expected to work for retrieving full paths? If yes any idea what may be causing this issue?