Closed telephonist95 closed 1 year ago
Emacs freezes when calling "xah-open-in-external-app" with some file extensions (for example .docx) on linux. Possible solution is to change argument DESTINATION of call-process function from nil to 0: (call-process shell-file-name nil 0 nil ...)
(call-process shell-file-name nil 0 nil ...)
Was also having the same issue and your solution fixes it for me. Thanks!
thank you guys. fixed in commit 08dd08d
Emacs freezes when calling "xah-open-in-external-app" with some file extensions (for example .docx) on linux. Possible solution is to change argument DESTINATION of call-process function from nil to 0:
(call-process shell-file-name nil 0 nil ...)