[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/typst-ts-mode 72d60432c7 03/19: fix: show the shell output
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/typst-ts-mode 72d60432c7 03/19: fix: show the shell output #42 |
Date: |
Thu, 24 Apr 2025 07:04:42 -0400 (EDT) |
branch: elpa/typst-ts-mode
commit 72d60432c7a4e58c469fe27c5bf97cd9d3bae6b7
Author: Huan Thieu Nguyen <nguyenthieuhuan@gmail.com>
Commit: Huan Thieu Nguyen <nguyenthieuhuan@gmail.com>
fix: show the shell output #42
---
typst-ts-misc-commands.el | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/typst-ts-misc-commands.el b/typst-ts-misc-commands.el
index e90a5d9996..62af890114 100644
--- a/typst-ts-misc-commands.el
+++ b/typst-ts-misc-commands.el
@@ -49,9 +49,12 @@
(let* ((base-path (file-name-directory buffer-file-name))
(file-name (file-relative-name buffer-file-name base-path))
(output-file-name
- (file-name-with-extension file-name "md")))
- (start-process "pandoc" shell-command-buffer-name
- "pandoc" "-o" output-file-name file-name)))
+ (file-name-with-extension file-name "md"))
+ (buffer-name (format "*pandoc %s*" file-name)))
+ (start-process "pandoc"
+ buffer-name
+ "pandoc" "-o" output-file-name file-name)
+ (display-buffer buffer-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, 2025/04/24
- [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 <=
- [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
- [nongnu] elpa/typst-ts-mode d25e8c2883 18/19: Add .elpaignore file #42, ELPA Syncer, 2025/04/24