Christoph
Christoph
I thought this might be some preparation for larger examples, where each "tab" would represent a file/module. Now, I see this was a misconception of mine. Then I guess the...
When I tried to use this branch I got confused because the readme still states to install and use `reason-apollo`. I'd try to find some time after the weekend to...
@chrispad2k just started to work on the readme pr.
To my knowledge @ryyppy is working on updating and improving the docs for reasonreact to be included in rescript-lang.org. I'm not aware what is planned for the current site.
[This comment in another repos's issue](https://github.com/IlanCosman/tide/issues/143#issuecomment-944421587) seems to solve it. :tada: Change `~/.config/fish/conf.d/fnm.fish` to: ``` status is-interactive && fnm env --use-on-cd | source ``` Note: I have absolutely no clue...
Any advice on how/where I should start trying to fix this myself? I'd be willing to try to find a solution, but I'm not sure where to start.
Is a config even necessary? (Note, that I'm not aware of the actual algorithm used: Would autocomplete suggest other Modules after Belt? How about for rescript 11? Would it suggest...
I guess it's good enough? The only issue I could think of is: If people were to use symlinks in their codebases, it could get tricky. _Edit_: Not knowing about...
@aspeddro after thinking a bit about it, here's why I'm hesitant towards the idea of using the filename as an id: 1. ReScript has no notion of namespaces for modules....
> ```rescript > module A = Render.Calc2 > module B = Render.Calc2 > module C = Calc > ``` > > In this case, A, B, and C should have...