Thomas M Kehrenberg
Thomas M Kehrenberg
`mypy` and `pyright` on strict mode will complain if the `py.typed` file is not present, not sure about pytype. Perhaps one could also build the wheel, then uncompress it and...
I modified the script to center around the math axis: ```python startglyph = 1114441 endglyph = 1114441 thisfont = fontforge.activeFont() for i in range(startglyph,endglyph+1): ytop = thisfont[i].boundingBox()[-1] # counted from...
> But the image shows that all integrals are not centered. Yes... I guess I wanted to demonstrate the problem again. Here it is with the patched font:  >You...
Oh, looking at the new image, I see that the circles are too high! I'll fix it.
Should be fixed now:  And also for the slanted integrals: 
Snap has support for the `--classic` confinement (i.e., no confinement) which might make it easier to package zed for snap compared to flatpak. Classic confinement requires explicit authorization by the...
Another issue is that only Cretezy can update crates.io: https://crates.io/crates/lazyjj (still stuck on version 0.5.0).
Personally, I think the argument that `__replace__` implementations will overwhelmingly have `, *,` in the signature is pretty convincing. And if a `__replace__` implementation doesn't have it and someone passes...
It seems to be any kind of class decorator: ```python from typing import final @final class A: x: int class B: y: int ``` Here it selects both `A` and...
You're maybe looking for [NotebookNavigator.nvim](https://github.com/GCBallesteros/NotebookNavigator.nvim). It has textobjects for blocks (though not implemented via treesitter): https://github.com/GCBallesteros/NotebookNavigator.nvim?tab=readme-ov-file#miniai-integration (EDIT: and also highlighting: https://github.com/GCBallesteros/NotebookNavigator.nvim?tab=readme-ov-file#enabling-minihipatterns-cell-highlighting )