Jeremie Knuesel

Results 81 comments of 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: ![image](https://github.com/jupyterlab/jupyterlab/assets/2412819/a7f289a6-1bbd-472d-820b-e6cb4e4424dd) 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 $ ``` ![image](https://github.com/typst/typst/assets/2412819/b7fb4bfe-23df-49b6-8d61-308d0e65cc41) LaTeX also puts too much space but it...

Ah right! The Latex version with scaling delimiters: ![image](https://github.com/typst/typst/assets/2412819/1d1289a4-e68b-41d9-8b49-995e6adfd18b) And typst wihtout scaling delimiters: ![image](https://github.com/typst/typst/assets/2412819/e328aaa0-3f25-4e70-8101-783409a89c61) 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: ![image](https://github.com/typst/typst/assets/2412819/ab88891c-ac33-4ede-a0e0-bb72153ed515)   Latex: ![image](https://github.com/typst/typst/assets/2412819/e0c055ff-44bc-4393-bdee-51c13f6b5918) The...