Skip to content

Commit ddb3922

Browse files
committed
Replace mention to old make script
1 parent a20ee95 commit ddb3922

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,32 @@ Client interface to the Language Server Protocol server for Haskell, as provided
66

77
## Requirements
88

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:
1010

11-
Using stack:
11+
* using stack:
1212

1313
```bash
1414
$ git clone https://github.com/haskell/haskell-ide-engine --recursive
1515
$ cd haskell-ide-engine && ./install.hs hie
1616
```
1717

18-
Using cabal:
18+
* using cabal:
1919

2020
```bash
2121
$ git clone https://github.com/haskell/haskell-ide-engine --recursive
2222
$ cd haskell-ide-engine && ./cabal-hie-install hie
2323
```
2424

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):
2626

27-
Using stack:
27+
* using stack:
2828

2929
```cmd
3030
C:\> git clone https://github.com/haskell/haskell-ide-engine --recursive hie
3131
C:\> cd hie && stack .\install.hs hie
3232
```
3333

34-
Using cabal:
34+
* using cabal:
3535

3636
```cmd
3737
C:\> git clone https://github.com/haskell/haskell-ide-engine --recursive hie
@@ -82,11 +82,10 @@ process haskell files on save.
8282

8383
#### HIE Wrapper
8484

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`,
9089
together with the other GHC version specific `hie-8.x` executables.
9190
This will take precedence over `hieExecutablePath`.
9291

0 commit comments

Comments
 (0)