Sophie Dankel

Results 60 issues of Sophie Dankel

## Description Closes https://github.com/FuelLabs/sway/issues/6018 Makes trait & inherent implementations show up for enums now: ![image](https://github.com/FuelLabs/sway/assets/47993817/58308fb6-2807-44cd-aa4a-6f4ee314ceac) And makes the sidebar include links to the impls: ![image](https://github.com/FuelLabs/sway/assets/47993817/55d9b17e-66dc-4f32-b1d8-325011eaef6f) ## Checklist - [ ]...

enhancement
forc-doc

Example: ```sway pub enum TestEnum { TestVariant: (), } impl TestEnum { pub fn test_fn() {} } impl Eq for TestEnum { fn eq(self, other: Self) -> bool { true...

bug
forc-doc

## Description This warning is mostly unnecessary. For fuelup users, it's expected that they might install some forc plugins outside of fuelup (with rust, nix, npm, etc.). For pure nix...

@mitchmindtree mentioned that `nix flake show` can tell us which packages would be changed by `refresh-manifest.sh`. We could add this to PRs to show this output to help us catch...

The fuel-indexer is deprecated and we should remove it from the documentation. Should we also remove old manifest files for it?

This would give us an idea of whether `fuel.nix` could be a viable replacement for `fuelup` in CI, in terms of latency to install forc.

Newer versions of npm require updating package-lock.json in two places, like this: ```diff --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "my-pkg", - "version": "0.3.1", + "version": "0.3.2",...

This PR disables it: https://github.com/FuelLabs/sway/pull/6181 The issue is that we don't have a custom LSP client for nvim, so we don't have a way to support features that aren't built...

enhancement
language server

Here is an example of what it looks like for a rust file: ![image](https://github.com/FuelLabs/sway/assets/47993817/96b27964-efc8-4d73-8ca6-945834400f9a) Here is an example of what it looks like for a sway file currently: ![image](https://github.com/FuelLabs/sway/assets/47993817/14956201-37e3-47e9-a322-cefb6b51b3f9) This...

enhancement
language server

Related: https://github.com/FuelLabs/sway/pull/6032

enhancement
forc-doc