1.1.1 • Published 4 years ago

elm-ls-vscode v1.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Elm Plugin for Visual Studio Code (VSCode)

Supports elm 0.19 and up

Install

  1. Install VSCode from here
  2. Follow this link to install the plugin
  3. Make sure you have nodejs and therefore npm installed
  4. Make sure you have Elm installed
  5. Install elm-test and elm-format by running npm install -g elm-test elm-format in a terminal

Highlighted Features

  • Errors and helpful tips will be shown whenever you save a file (Control + S)
  • Format on save (Control + S)
  • Suggests completions and snippets (Control + Space)

Additional Features

  • Lists all references to a type alias, module, custom type or function (Alt + Shift + F12)
  • Jump to the definition of a type alias, module, custom type or function
  • Shows type annotations and documentation on hover for type alia, module, custom type or function
  • Rename a type alias, module, custom type or function (F2)
  • Browse file by symbols (Control + Shift + O)
  • Browse workspace by symbols (Control + Shift + R)
  • Codelenses show how many times you calling a function and if it's exposed or not
  • Code folding

Extension Settings

This extension contributes the following settings:

  • elmLS.trace.server: Enable/disable trace logging of client and server communication
  • elmLS.elmPath: The path to your elm executable.
  • elmLS.elmFormatPath: The path to your elm-format executable.
  • elmLS.elmTestPath: The path to your elm-test executable.
  • elmLS.elmAnalyseTrigger: When do you want the extension to run elm-analyse? Might need a restart to take effect.

FAQ

  • Most features don't seem to work for me?

    • This tool needs a valid elm project, please check if you have an elm.json. You can easily initialize your project with elm init. If it still does work, please try if you get the same behavior with the elm-spa-example.
  • What's the relation to the language server?

  • Why do I need to install elm, elm-test and elm-format?

    • You will need to install elm and elm-test to get all diagnostics and elm-format for formatting. If your setup fails to find the global installations of those, you can use the settings panel in VSCode to set the paths to the executable manually. Alternatively you can also just install these to your local npm package.json.
  • Can I use an elm-analyse config?

    • Yes, you can, please check here for more details.

Contributing / Debugging

git clone --recursive git@github.com:elm-tooling/elm-language-client-vscode.git
cd elm-language-client-vscode
npm install

Open VSCode with this project (code .) and press F5 to start debugging the plugin.

1.1.1

4 years ago

0.3.0

5 years ago