Skip to content

Commit 7ebb947

Browse files
committed
Preparing for 0.0.21
1 parent dae5187 commit 7ebb947

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
### 0.0.21
22

3+
* Remove languageServerHaskell.useHieWrapper, We now use hie-wrapper
4+
by default.
35
* Update the vscode-languageclient to v4.4.0
6+
* Fix #98 Import identifier insertion line `moduleLine` is now the
7+
first line that is (trimmed) `where` or ends with `where` or ends
8+
with `)where`. (@mpilgrem)
49

510
### 0.0.20
611

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-hie-server",
33
"displayName": "Haskell Language Server",
44
"description": "Language Server Protocol for Haskell via HIE",
5-
"version": "0.0.20",
5+
"version": "0.0.21",
66
"license": "MIT",
77
"publisher": "alanz",
88
"engines": {

src/extension.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ function activateHieNoCheck(context: ExtensionContext, folder: WorkspaceFolder,
104104
}
105105

106106
const useCustomWrapper = workspace.getConfiguration('languageServerHaskell', uri).useCustomHieWrapper;
107-
// const useHieWrapper = workspace.getConfiguration('languageServerHaskell', uri).useHieWrapper;
108107
let hieExecutablePath = workspace.getConfiguration('languageServerHaskell', uri).hieExecutablePath;
109108
let customWrapperPath = workspace.getConfiguration('languageServerHaskell', uri).useCustomHieWrapperPath;
110109
const logLevel = workspace.getConfiguration('languageServerHaskell', uri).trace.server;
@@ -143,7 +142,6 @@ function activateHieNoCheck(context: ExtensionContext, folder: WorkspaceFolder,
143142

144143
const tempDir = os.tmpdir();
145144
const runArgs = [];
146-
// const debugArgs = ['-d', '-l', path.join(tempDir, 'hie.log')];
147145
let debugArgs: string[] = [];
148146
if (logLevel === 'verbose') {
149147
debugArgs = ['-d', '-l', path.join(tempDir, 'hie.log'), '--vomit'];

0 commit comments

Comments
 (0)