Boris Cherny
Boris Cherny
that's pretty tough. if you want to detect the current cursor position and set the new one appropriately, feel free to make a pr. if there are other apps that...
@realdlee I don't have much time to work on this. The codebase is quite compact and easy to read - PRs are certainly welcome.
Hi @marcocavanna! I agree this is a bug, but the solution is a bit more nuanced. Eg. some currency formats use `,` as the thousands separator and `.` as the...
this does seem like a regression. with negative amounts, the behavior is very inconsistent.
In general, I agree that characters which don't match `/[\d\.]+/` should be ignored, and the cursor/input should not be affected. In this sense this is a dupe of #2. Feel...
Can you expand on your use case a little more? It's generally an anti-pattern to use globals (values or types), and better to import types explicitly when you need them....
Thanks for the report. It's a little hard to see what exactly the issue is -- would you mind whittling your repro case down even more (eg. removing unneccessary properties...
:+1: :+1: :+1: it sounds like you're looking for typed tuples. i need something similar - union types. eg. ``` js { foo: Array.of(String), bar: Array.of(Number), baz: Array.of(String.or(Number)) } ```
ah, i didn't realize that #toJSON is json-schema compatible. json-schema properties [are extensible](http://json-schema.org/latest/json-schema-core.html#anchor20), though i'm not sure if values are extensible as well. this will work equally well for non-globals...