adding tweaks to xdg-open

This commit is contained in:
Chris Cochrun 2023-07-03 09:20:21 -05:00
parent e193044fa3
commit 15b160fd6d
2 changed files with 2 additions and 2 deletions

View file

@ -3148,7 +3148,7 @@ I'm making a small function in here to open files in the appropriate program usi
"Open the file-at-point in the appropriate program"
(interactive)
(let ((file (file-truename (ignore-errors (dired-get-file-for-visit)))))
(message file)
(message (concat "Opening ==> " file))
(call-process "xdg-open" nil 0 nil file)))
(defun chris/dired-open-wm ()

View file

@ -2288,7 +2288,7 @@ targets."
"Open the file-at-point in the appropriate program"
(interactive)
(let ((file (file-truename (ignore-errors (dired-get-file-for-visit)))))
(message file)
(message (concat "Opening ==> " file))
(call-process "xdg-open" nil 0 nil file)))
(defun chris/dired-open-wm ()