Skip to content

Commit f0fbbed

Browse files
committed
Fix command identifiers
1 parent b5166b9 commit f0fbbed

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ This extension will download `haskell-language-server` binaries to a specific lo
8383
|----------|------|
8484
| macOS | `~/Library/Application\ Support/Code/User/globalStorage/alanz.vscode-hie-server/` |
8585
| Windows | `%APPDATA%\Code\User\globalStorage\alanz.vscode-hie-server` |
86-
| Linux | `$HOME/.config/Code/User/settings.json` |
86+
| Linux | `$HOME/.config/Code/User/globalStorage/alanz.vscode-hie-server` |
8787

8888
Note that if `haskell-language-server-wrapper`/`haskell-language-server` is already on the PATH, then the extension will launch it directly instead of downloading binaries.
8989

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,12 @@
161161
},
162162
"commands": [
163163
{
164-
"command": "hie.commands.importIdentifier",
164+
"command": "haskell.commands.importIdentifier",
165165
"title": "Haskell: Import identifier",
166166
"description": "Imports a function or type based on a Hoogle search"
167167
},
168168
{
169-
"command": "hie.commands.restartHie",
169+
"command": "haskell.commands.restartServer",
170170
"title": "Haskell: Restart Haskell LSP server",
171171
"description": "Restart the Haskell LSP server"
172172
}

0 commit comments

Comments
 (0)