Difference between revisions of "Haskell-language-server"

From HaskellWiki
Jump to navigation Jump to search
(Created page with "'''haskell-language-server''' is a Language Server Protocol-implementation for GHC. ==Features== * Generate explicit import lists * Evaluate code in comments with a click...")
 
(installation section)
Line 4: Line 4:
 
* Generate explicit import lists
 
* Generate explicit import lists
 
* Evaluate code in comments with a click
 
* Evaluate code in comments with a click
  +
  +
==Installation==
  +
[Ghcup https://www.haskell.org/ghcup/] can install the project, but after installation, you'll need to integrate it with an editor. The [README.md https://github.com/haskell/haskell-language-server#configuring-your-editor] offers instructions for how to integrate with VSCode/SublimeText/Vim/Neovim/Atom/Emacs.
   
 
==History==
 
==History==

Revision as of 20:05, 9 December 2020

haskell-language-server is a Language Server Protocol-implementation for GHC.

Features

  • Generate explicit import lists
  • Evaluate code in comments with a click

Installation

[Ghcup https://www.haskell.org/ghcup/] can install the project, but after installation, you'll need to integrate it with an editor. The [README.md https://github.com/haskell/haskell-language-server#configuring-your-editor] offers instructions for how to integrate with VSCode/SublimeText/Vim/Neovim/Atom/Emacs.

History

In January 2020, Neil Mitchell wrote a blog post launching the project.[1]

References