You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-11Lines changed: 10 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,32 +6,32 @@ Client interface to the Language Server Protocol server for Haskell, as provided
6
6
7
7
## Requirements
8
8
9
-
The language client requires you to manually install the [HIE](https://github.com/haskell/haskell-ide-engine) language server which can be done with commands below but this will take exceedingly long time and less than robust, consider proceeding to installation readme at the link below, it has option for getting bins directly,
9
+
The language client requires you to manually install the [HIE](https://github.com/haskell/haskell-ide-engine) language server which can be done with commands below but this will take exceedingly long time and less than robust, consider proceeding to installation readme at the link below, it has option for getting bins directly:
$ cd haskell-ide-engine && ./cabal-hie-install hie
23
23
```
24
24
25
-
On Windows, it is advised to either install HIE at the root of the drive, and/or to enable [Win32 Long paths](https://github.com/haskell/haskell-ide-engine#windows-specific-pre-requirements).
25
+
On Windows, it is advised to either install HIE at the root of the drive, and/or to enable [Win32 Long paths](https://github.com/haskell/haskell-ide-engine#windows-specific-pre-requirements):
26
26
27
-
Using stack:
27
+
* using stack:
28
28
29
29
```cmd
30
30
C:\> git clone https://github.com/haskell/haskell-ide-engine --recursive hie
31
31
C:\> cd hie && stack .\install.hs hie
32
32
```
33
33
34
-
Using cabal:
34
+
* using cabal:
35
35
36
36
```cmd
37
37
C:\> git clone https://github.com/haskell/haskell-ide-engine --recursive hie
@@ -82,11 +82,10 @@ process haskell files on save.
82
82
83
83
#### HIE Wrapper
84
84
85
-
Furthermore, the extension supports multiple ways of initializing hie,
86
-
depending on your needs. The default one uses the `hie-vscode.[sh|bat]`
87
-
file to start hie through. This will attempt to start via `hie-wrapper`
88
-
if it is on the vscode path, otherwise fall back to `hie`.
89
-
The`hie-wrapper` executable is installed using `make build`,
85
+
Furthermore, the extension supports multiple ways of initializing hie, depending on your needs.
86
+
The default one uses the `hie-vscode.[sh|bat]` file to start hie through.
87
+
This will attempt to start via `hie-wrapper` if it is on the vscode path, otherwise fall back to `hie`.
88
+
The`hie-wrapper` executable is installed using `stack ./install.hs hie` or `./cabal-hie-install hie`,
90
89
together with the other GHC version specific `hie-8.x` executables.
91
90
This will take precedence over `hieExecutablePath`.
0 commit comments