LordMZTE

Results 92 comments of LordMZTE

It should use as many columns as your terminal allows without line wrapping so this is probably a bug.

This unfortunately seems to scale very poorly. I'm trying to push a derivation that's about 1 GiB in size and it's been blocking after the upload with maxed out disk...

Thanks for the feedback! I've addressed your requests. I've split the `LatexDialog` class up into three classes: - `AbstractLatexDialog` which implements the common funcitonality shared by the other two classes...

Thanks! I unfortunately don't have a windows machine to test on.

That's interesting, it seems like `tex.tex` contains a null byte after your input. I'm unsure where that came from, but I suspect something must be up with the trailing CRLF...

Looks like the code used to incorrectly look for `\n\r` instead of `\r\n`, which caused your `edit.tex` to contain `z^2\r`, which is definitely invalid, but I still have no clue...

Thank you! I've applied your patch!

> Unfortunately using the `-W` option with the `open` command didn't solve the problem. It waits indefinitely after closing the editor, even if I run it from the terminal. That's...

> One possible solution could be to switch from "I wait until the app terminates" to "I wait until the file is saved" using a [GFileMonitor](https://docs.gtk.org/gio/class.FileMonitor.html). This poses quite a...

How should we proceed here? Should I attempt to detect file changes like we discussed above, or should we keep the current mechanism of waiting for the editor to exit?...