From c1e5ed2b31e78d20dcabbbbc0bd84e9bae0a61b8 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Thu, 29 Feb 2024 14:28:49 -0500 Subject: [PATCH] fix(emacs): use async process for latex just process Signed-off-by: Lucas Sta Maria --- .emacs.d/include/latexconfig.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.emacs.d/include/latexconfig.el b/.emacs.d/include/latexconfig.el index 94b2ec5..2948980 100644 --- a/.emacs.d/include/latexconfig.el +++ b/.emacs.d/include/latexconfig.el @@ -14,7 +14,7 @@ "Run the `just' command -- the command I use to compile my environment." (interactive) (save-buffer) - (shell-command-to-string "just")) + (async-start-process "emacs-just" "just" nil)) (defun open-out-pdf () "Find and open the produced PDF via Zathura."