Fuad Saud
Fuad Saud
Has anyone verified this to fix #126? I rebase this PR on master and tried pointing my app to it, but I still see the same behavior (it's not impossible...
I ran into this problem recently and ended up implementing the following, which worked alright for my use cases: ```clojure (defrecord Sorted [expected] matcher-combinators/Matcher (-matcher-for [_this] (matcher-combinators/-matcher-for expected)) (-matcher-for [_this...
I can reproduce the problem with and without nvim-ts-autotag: both scenarios yield slightly different wrong outcomes.
I have been bitten by this problem recently. Here's a simplified version of the use case I have: ```typescript type Entity = { name: string; description?: string; }; const EntityCreationRequest...
As a reference: https://github.com/stefanoverna/vim-i18n
Any reason this hasn't been merged yet?
Right now I get errors when trying to generate .d.ts files from .scss files that use imports with aliases. I've tried specifying the aliases with the `--alias`, but that doesn't...
This warning is [emitted](https://github.com/ueberdosis/hocuspocus/blob/main/packages/provider/src/HocuspocusProviderWebsocket.ts#L494) when the websocket connection closes with an "unauthorized" reason. But it seems that the hocuspocus server uses it to close in cases which are not related...
It seems that `pulumi config set` overwrites the value (as a string) everytime any config is set, which could lead to errors when trying to manually maintain the value as...
For me, the argument on why `omit` should accept any key is pretty simple: it should align with TypeScript's `Omit`. `Omit` doesn't care about keys, why should Ramda's types? In...