elm-language-server icon indicating copy to clipboard operation
elm-language-server copied to clipboard

Language server implementation for Elm

Results 94 elm-language-server issues
Sort by recently updated
recently updated
newest added

No errors shown in the editor when passing from a `case of` to a function with the wrong type. It doesn't matter if it is with Tree node _ =...

If I'm correct, currently elmls is using `elm-test make` to figure out if the tests are compiling. And we've had some discussions if it could be useful to use `elm-test-rs...

## Expected Behavior When activating quickfix through the vscode command "editor.action.quickFix", while the cursor is hovering over a non-imported qualified import (such as `Attribute.none`), I want to get auto-import suggestions...

- [ ] There seem to be cases, where we don't get the code action, even if we got it before in the exact place - [ ] Only show...

```elm type alias Person = { firstname : String } getFirstname : Person -> String getFirstname person = person.firstname ``` While hovering over `person` here does reveal `person : Person`...

enhancement

Seems like we're missing these right now: ``` import Data.Affinity exposing (..) import Data.Level exposing (..) ``` ``` import TypedSvg.Types exposing (AnchorAlignment(..), Paint(..), Transform(..)) ```

bug

We can link to urls via markdown. The problem to figure out is, which packages are actually from the repo and have online docs. It's especially hard, as the current...

enhancement

We should get rid of the file and switch to our own file format. One idea would be to use the `elm-tooling.json` to handle these settings. @lydell

enhancement

When an import is missing, this plugin correctly flags the symbol that couldn't be resolved and when triggering a code action for the flagged error also correctly suggests to add...

enhancement

## Expected Behavior When selecting a definition and bringing up the associated quick-fix menu via Ctrl-. or clicking on the light bulb symbol that appears next to it, "Add inferred...

bug