Tim Hutt
Tim Hutt
If you take the Yew example, move `index.html` to `src/index.html` and then change `target = "index.html"` to `target = "src/index.html"` it gives you this confusing and unexpected error: ``` Mar...
It would be nice if it did whatever Ctrl-K does before recompiling due to a watch change (optionally).
Using Typescript is great (when type declarations are shipped anyway), but it's kind of rubbish that so many of the types are just `any`. It would be a good idea...
Another situation where YAPF fails to converge on a stable format in one step: ```python class foo: # # A # def a(): pass # # B # def b():...
Ok technically it does converge on stable output, but not in one step. If you start here: ```python predefined_typedefs = {'foo' : 'bar'}; ``` YAPF formats it to this: ```python...
Support GCC
It would be nice if you didn't have to spend thousands on a Keil license to compile this!
I just installed Haskell on a Mac using `ghcup`, and said "yes" when asked to install the language server. It installed these: ``` .ghcup/bin/haskell-language-server-8.10.2 .ghcup/bin/haskell-language-server-8.10.2~1.3.0 .ghcup/bin/haskell-language-server-8.10.3 .ghcup/bin/haskell-language-server-8.10.3~1.3.0 .ghcup/bin/haskell-language-server-8.10.4 .ghcup/bin/haskell-language-server-8.10.4~1.3.0 .ghcup/bin/haskell-language-server-8.10.5...
It seems ImageMagick supports XPM3 but not XPM2 (see [wikipedia](https://en.wikipedia.org/wiki/X_PixMap) for the difference). Actually that's almost all the information there is about XPM2 - the only piece of software I've...
This must be a hidpi issue, but on Mac on a retina display the mouse input positions are all doubled (or equivalently, the output image is doubled). That is, if...