[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/typst-ts-mode 13dff22973 02/19: fix: use start-process ins
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/typst-ts-mode 13dff22973 02/19: fix: use start-process instead of async-shell-command #42 |
Date: |
Thu, 24 Apr 2025 07:04:42 -0400 (EDT) |
branch: elpa/typst-ts-mode
commit 13dff22973ed9d5176ca2453d54a35a2e22a7ad7
Author: Huan Thieu Nguyen <nguyenthieuhuan@gmail.com>
Commit: Huan Thieu Nguyen <nguyenthieuhuan@gmail.com>
fix: use start-process instead of async-shell-command #42
---
typst-ts-misc-commands.el | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/typst-ts-misc-commands.el b/typst-ts-misc-commands.el
index 9b1d64478a..e90a5d9996 100644
--- a/typst-ts-misc-commands.el
+++ b/typst-ts-misc-commands.el
@@ -50,10 +50,8 @@
(file-name (file-relative-name buffer-file-name base-path))
(output-file-name
(file-name-with-extension file-name "md")))
- ;; FIXME: Use `start-process' so we don't need to `shell-quote-argument'?
- (async-shell-command
- (concat "pandoc -o " (shell-quote-argument output-file-name)
- " " (shell-quote-argument file-name)))))
+ (start-process "pandoc" shell-command-buffer-name
+ "pandoc" "-o" output-file-name file-name)))
(defun typst-ts-mc-search-typst-symbol ()
(interactive)
- [nongnu] elpa/typst-ts-mode updated (e0542e3e42 -> 972dc69d6b), ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode ba70e66060 06/19: Merge branch 'develop' into 42-nongnu-patch, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 44ed423508 09/19: fix: apply some suggestions from linters #42, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 7e5b1ef3bc 11/19: fix: .dir-locals.el add file header, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 919b088997 13/19: chore, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode ebc84e4f65 14/19: chore: only use typst-ts as prefix #42, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 929dfdda6a 01/19: fix: patch applied #41, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 0b0d4bf211 05/19: fix: use start-process for watch mode #42, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 13dff22973 02/19: fix: use start-process instead of async-shell-command #42,
ELPA Syncer <=
- [nongnu] elpa/typst-ts-mode b1eb84cd2a 07/19: refactor: typst-ts-mode-return, also takes typst-ts-mode-electric-return in mind #42, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 72d60432c7 03/19: fix: show the shell output #42, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 2b14377e24 04/19: stub: comment out typst-ts-mode-return for now #42, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 998eed6f22 10/19: refacvtor: move variables to separate file, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 2cca29e649 12/19: fix(typst-ts-watch): start-process issue, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 5573845ee9 16/19: feat: grid cell movement now has keybinding #41, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 1e11d3c74e 17/19: refactor: apply patch #42, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 972dc69d6b 19/19: release: bump version number, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 6fc7f2ece7 08/19: Merge branch 'develop' into 42-nongnu-patch, ELPA Syncer, 2025/04/24
- [nongnu] elpa/typst-ts-mode 380a0e566b 15/19: fix: issues found by melpazoid #42, ELPA Syncer, 2025/04/24