external processes for compilations #216
Replies: 4 comments 4 replies
-
What is shown when you run the command for a faulty file in a terminal? Does it just hang, waiting for some input? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Textadept spawns processes as external child processes, but it's possible that the children don't show up in `top`. It's on my TODO list to come up with some sort of way to kill misbehaving processes via the GUI. Sorry about that :(
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ousia
-
Oh, I forgot about Tools > Stop. Does that work for you?
|
Beta Was this translation helpful? Give feedback.
2 replies
-
I have another (hopefully) portable approach: a script that starts latexmk
and opens the .tex file in TextAdept (or any other editor) as child
processes. Once you modify anything in the .tex file and save, latexmk
kicks in the compiler and launches the PDF viewer on success.
On Linux, I have tested it on a smaller machine with TextAdept and
epdfviewer and on my main machine with Emacs and evince. On macOS, I have
tested both TextAdept and Emacs collaborating with Skim. Additionally, I
also have forward and backward search between the PDF and the .tex on all
combinations.
Hope it helps...
…On Tue, 21 Jun 2022 at 18:34, Pablo Rodríguez ***@***.***> wrote:
I didn’t know that such an option was available. Now I need another
external process to hijack Textadept.
In some cases, Textadept becomes unresponsive (so I wonder whether
stopping the compilation would even be detected by Textadept).
—
Reply to this email directly, view it on GitHub
<#216 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAZKU4A54G3VASPEHANIWGDVQHVJZANCNFSM5ZE6ATPQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***
com>
--
Fragen sind nicht da um beantwortet zu werden,
Fragen sind da um gestellt zu werden
Georg Kreisler
Headaches with a Juju log:
unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should run
a leader-deposed hook here, but we can't yet
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I compile my TeX sources with:
In some cases, Textadept gets stuck due to faulty code.
If I try to kill the process with
top
, I only havetextadept
to kill.With Geany, the
luametatex
process is independent from the editor.This avoids some editor freezing and also enables killing the wrong external process.
How can I have external processes when compiling in Textadept?
Many thanks for your help.
Beta Was this translation helpful? Give feedback.
All reactions