John Anderson
John Anderson
https://github.com/dmfrancisco/pystache seems to have added support as well?
I was able to accomplish i18n by passing a translation function to the render: ``` def translate(text): return 'my translation' pystache.render('template', {'_': translate}) ```
This might be a duplicate of: https://github.com/vadimcn/codelldb/issues/827 The weird thing is that RustRover uses lldb as well and doesn't have any issue. ``` (lldb) version lldb version 16.0.0 (JetBrains IDE...
Looks like LLDB added support for rust enums here: https://github.com/llvm/llvm-project/commit/e84751a21561c5b1d5673cdff8e22ac4cf2f5dc2 Which isn't in a real release yet. So might be worth applying that patch to the CodeLLDB lldb? Can I...
Maybe a stop-gap would be to provide `ProxyCommand` as a configuration option?
I just hit this, is anyone working on it?
@yummybian ping, 1.0 also doesn't match the version set in `setup.py` of master
I just reported #120 and it sounds similar to this. You claim "colors are processed correctly" but I don't actually have that experience. Can you show me how you got...
Right now I'm doing: ``` beforeEach( () => { StyleSheetTestUtils.suppressStyleInjection(); Math.random = jest.fn(() => 123); } ); ``` which I don't like, because I do use Math.random in other places.
Hey, hopefully my persistence doesn't come off wrong but I'm still wondering if the maintainers have thoughts on this. Validating the data coming back is pretty important to us and...