Skip to content

Commit

Permalink
Close #922: Add out-of-box support for Futhark LSP server
Browse files Browse the repository at this point in the history
* eglot.el (eglot-server-programs): Support futhark lsp.
* README.md: Update.
* NEWS.md: Update.

Copyright-paperwork-exempt: yes
  • Loading branch information
athas authored Apr 15, 2022
1 parent 41b6a7e commit 777a716
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ available. The special support code for RLS has been removed.
##### New servers have been added to `eglot-server-programs`
- clojure-lsp ([#813][github#813])
- racket-langserver ([#694][github#694])
- futhark lsp ([#922](github#922))

# 1.8 (12/1/2022)

Expand Down Expand Up @@ -374,3 +375,4 @@ and now said bunch of references-->
[github#893]: https://github.com/joaotavora/eglot/issues/893
[github#899]: https://github.com/joaotavora/eglot/issues/899
[github#901]: https://github.com/joaotavora/eglot/issues/901
[github#922]: https://github.com/joaotavora/eglot/issues/922
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ find-library` can help you tell if that happened.
* Elm's [elm-language-server][elm-language-server]
* Erlang's [erlang_ls][erlang_ls]
* Fortran's [fortls][fortls]
* Futhark's [futhark lsp][futhark-lsp]
* Go's [gopls][gopls]
* Godot Engine's [built-in LSP][godot]
* HTML [html-languageserver][html-languageserver]
Expand Down Expand Up @@ -507,6 +508,7 @@ for the request form, and we'll send it to you.
[elixir-ls]: https://github.com/elixir-lsp/elixir-ls
[elm-language-server]: https://github.com/elm-tooling/elm-language-server
[fortls]: https://github.com/hansec/fortran-language-server
[futhark-lsp]: https://futhark-lang.org
[gopls]: https://github.com/golang/tools/tree/master/gopls
[godot]: https://godotengine.org
[html-languageserver]: https://github.com/hrsh7th/vscode-langservers-extracted
Expand Down
1 change: 1 addition & 0 deletions eglot.el
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ language-server/bin/php-language-server.php"))
(nix-mode . ("rnix-lsp"))
(gdscript-mode . ("localhost" 6008))
((fortran-mode f90-mode) . ("fortls"))
(futhark-mode . ("futhark" "lsp"))
(lua-mode . ("lua-lsp"))
(zig-mode . ("zls"))
(css-mode . ,(eglot-alternatives '(("vscode-css-language-server" "--stdio") ("css-languageserver" "--stdio"))))
Expand Down

0 comments on commit 777a716

Please sign in to comment.