Texas Toland

Results 46 issues of Texas Toland

Git History button shows: Unexpected error. Check the console. The official Git History extension works but creates a duplicate button. ```log Failed to read the 'localStorage' property from 'Window': Access...

bug

#### What happens and why it is wrong I was struggling with generating JSDoc typings for a library using Microdundle. It generated `index.d.ts` but none of the imported files. The...

kind: feature
solution: workaround available
scope: upstream

Your extension would be exponentially better than anything available for VS Code. I'm willing to help!

feature request

### Description Possibly by design but worth documenting. ### Repro code [REPL](https://fable.io/repl/#?code=PYBwpgdgBAYghgIwDZgHQGFgCcwChcDaAPAIIAuZcAxgBYCyYAtgmFgM4B8AurmQJ7goAOQCuzVlAC8uKFAA+sJMDhkowAGZR1SlTPlQAkhFUaoAS2N7GTFlnMQkFsFAgBGVCQAmngBQQATABcwmK2AJRSerKMKrRQfq4ANC7+EQDuZmQ0Ufo+MDqq6kmKyoWpUAC0HCUqPkVQANRaqTkKeQVayUaqZhFVNWR1jVodva3x3ebJ+aVafdUztdqzZsPqYeM+k2bF2+X93T47w2YtuFvGUKke3u2z5XLVIFgWZOrQAEQApADyH7hAA&html=DwCwLgtgNgfAsAKAAQqaApgQwCb2ag4CdMTJcMABwFp0BHAVwEsA3AXgCIBhAewDsw6AdQAqAT0roOSAMb9BAzoIAeYAPThoAbhkhMAJwDOJNgzAAzagA4OeQhqy5EhAEY9sYu6mBq3HvD6asEA&css=Q) ```fsharp open Fable.Core [] type Number = | Float of float | Int of int member inline n1.Add(n2:...

### Description Incorrect function name is used at operator call site. ### Repro code [REPL](https://fable.io/repl/#?code=PYBwpgdgBAYghgIwDZgHQGFgCcwChcDaAPAIIAuZcAxgBYCyYAtgmFgM4B8AurmQJ7goAOQCuzVlAC8uKFAA+sJMDhkowAGZR1SlTPlQAkhFUaoAS2N62lMmapRGTFligAKANQBKVxACMALmExZwAaKAgAJkDRcSxPKT1ZRhVaNz8wyPiAdzMyGkT9VxgdVXVfMOLlUoj4gFoORSrXMqh3LRqChSKSrTCjVTM6hsqVZtatHsHOt37zCp71IcbR7SrzccXp11mzcsNjcxqoev2yV13xsw7cWYjxkdU7uQaQLAsydWgAIgBSAHkvrggA&html=DwCwLgtgNgfAsAKAAQqaApgQwCb2ag4CdMTJcMABwFp0BHAVwEsA3AXgCIBhAewDsw6AdQAqAT0roOSAMb9BAzoIAeYAPThoAbhkhMAJwDOJNgzAAzagA4OeQhqy5EhAEY9sYu6mBq3HvD6asEA&css=Q) ```fsharp open Fable.Core [] type Number = | Float of float | Int of int...

Around [Splitting Programs](https://zaid-ajaj.github.io/the-elmish-book/#/chapters/scaling/splitting-programs) a lot of lines are spent explaining prop drilling in the Elm architecture. `ElmishComponents` would be a huge improvement without sacrificing concepts or features like automatic disposal....

> This problem is closely related to Elmish subscription, especially the types of subscriptions that can be canceled. This topic will be explored in-depth in a later section. > [Asynchronous...

Building on @theianjones's proposal in #3. > 1 open question is how to represent an array with a single element. The only idea I had was fragments like `...`. But...

The following line doesn't account for cancellation: https://github.com/bengreenier/vscode-node-readme/blob/89b2d6fdb324e55870fd15eee599dabc80136ad2/src/commands/showReadme.ts#L21 In theory that should pass `findReadme(undefined)` then attempt to open `https://npmjs.org/package/undefined` (I guess) but instead opens `https://npmjs.org/package/` which npm interprets as the...

I was just reading your Vue bindings! Maybe they could be simplified by manually triggering a ref without the `reactive` proxy 👀 ```js export function enableVueBindings({ shallowRef, triggerRef }) {...