В Emacs, как открыть файл во внешней программе без ошибок?

Я использую следующий код, чтобы заставить Emacs открывать файлы PDF с помощью внешнего приложения:

(require 'openwith)
'(openwith-associations (quote (("\\.skim\\'" "open" (file)) ("\\.pdf\\'" "open" (file)))))
(openwith-mode t)

Когда я захожу в файл PDF, он успешно открывает файл в моей внешней программе, но также выдает ошибки и обратную трассировку:

Debugger entered--Lisp error: (error "Opened Foundation - Isaac Asimov.pdf in external program")
  signal(error ("Opened Foundation - Isaac Asimov.pdf in external program"))
 error("Opened %s in external program" "Foundation - Isaac Asimov.pdf")
openwith-file-handler(insert-file-contents "/Users/jay/iBooks/Books/Foundation - Isaac Asimov.pdf" t nil nil nil)
insert-file-contents("~/iBooks/Books/Foundation - Isaac Asimov.pdf" t)
byte-code("\302\303  \302\"\210)\302\207" [inhibit-read-only filename t insert-file-contents] 3)
 find-file-noselect-1(#<killed buffer> "~/iBooks/Books/Foundation - Isaac Asimov.pdf" nil nil "~/Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/Foundation - Isaac Asimov.pdf" (21490564 16777218))
find-file-noselect("/Users/jay/iBooks/Books/Foundation - Isaac Asimov.pdf" nil nil nil)
find-file("/Users/jay/iBooks/Books/Foundation - Isaac Asimov.pdf")
mapc(find-file ("/Users/jay/iBooks/Books/Foundation - Isaac Asimov.pdf"))
helm-find-many-files("/Users/jay/iBooks/Books/Foundation - Isaac Asimov.pdf")
apply(helm-find-many-files "/Users/jay/iBooks/Books/Foundation - Isaac Asimov.pdf")

Как открыть файлы во внешних приложениях без ошибок?

3 ответа

Моя рекомендация будет использовать start-process в сочетании с dired-mode открывать файлы во внешних приложениях.

Xah Lee написал короткую, но эффективную функцию для обработки открываемых файлов во внешнем приложении по умолчанию, установленном в ОС: http://ergoemacs.org/emacs/emacs_dired_open_file_in_ext_apps.html

(defun xah-open-in-external-app (&optional file)
  "Open the current file or dired marked files in external app.

The app is chosen from your OS's preference."
  (interactive)
  (let ( doIt
         (myFileList
          (cond
           ((string-equal major-mode "dired-mode") (dired-get-marked-files))
           ((not file) (list (buffer-file-name)))
           (file (list file)))))

    (setq doIt (if (<= (length myFileList) 5)
                   t
                 (y-or-n-p "Open more than 5 files? ") ) )

    (when doIt
      (cond
       ((string-equal system-type "windows-nt")
        (mapc (lambda (fPath) (w32-shell-execute "open" (replace-regexp-in-string "/" "\\" fPath t t)) ) myFileList))
       ((string-equal system-type "darwin")
        (mapc (lambda (fPath) (shell-command (format "open \"%s\"" fPath)) )  myFileList) )
       ((string-equal system-type "gnu/linux")
        (mapc (lambda (fPath) (let ((process-connection-type nil)) (start-process "" nil "xdg-open" fPath)) ) myFileList) ) ) ) ) )

Я использую нечто подобное (что можно посмотреть по следующей ссылке на Github), но это не так просто, как функция, написанная Xah Lee: https://github.com/lawlist/dired-read-file-name/blob/master/dired-read-file-name.el

В удаленном буфере,browse-url-of-dired-file("попросить WWW-браузер отобразить файл, указанный в этой строке" - привязано кWпо умолчанию для меня) открыл.csvфайл в Excel и.mdфайл в MacDown (оба значения ОС по умолчанию для этих типов файлов).

Этого достаточно для меня, я мог бы попытаться решить, как сделать это для текущего файла буфера когда-нибудь.

(macOS Монтерей 12.6.2, Emacs 28.2)

If the path to the file is in the buffer, I save it with M-w then invoke shell-command and call xdg-open C-y. This will yank the path to the file previously saved and opens it with the associated program. xdg-open takes care of finding the right program to open that file (screenshots).

Другие вопросы по тегам