Jeremie Knuesel
Jeremie Knuesel
OSC 8 support in the notebook is necessary for correct display of cell outputs that include these escape sequences. Currently some error messages look like this:  but they should...
I'd be happy to submit a pull request. I have two questions though: 1. Are we confident the addition of `Flexible` in the outer column won't change the behavior of...
1. Great, thanks. 2. Makes sense. The docs/example should then use the factory constructor for the flexible child scenario, so it would make sense to make both changes (the one...
Good question. A global directory such as `~/.dart_msgs` feels a bit invasive and idiosyncratic to me... And what if a user needs several versions of the same message package? For...
This feature would be very useful for auto-closing LaTeX environments, which can be a lot to type. For example if you write `\begin{enumerate}` many editors will automatically add `\end{enumerate}` after...
Another one: too much space before the last `A` in ```typst $ A (X_i - overline(X))(X_i - overline(X))^T A^T $ ```  LaTeX also puts too much space but it...
Ah right! The Latex version with scaling delimiters:  And typst wihtout scaling delimiters:  so Latex is no better actually, maybe even a bit worse
@DrBlury do you need something not covered by the oxifmt package mentioned above? For example the package allows the following: ``` #import "@preview/oxifmt:0.2.1": strfmt #strfmt("{:.2}", 5.3456) // will show as...
I think if you make sure that the number is a float it will work: `strfmt("{:.2}", float(10000))`. For the thousand separator, it's apparently not supported by oxifmt currently but there's...
An example where spacing could be improved I think: ``` $ mat(delim: "|", 1, 2, 3; 4, 5, 6; 7, 8, 9) $ ``` Typst:  Latex:  The...