Skip to content

Commit

Permalink
Fix command identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
lukel97 committed Jul 23, 2020
1 parent b5166b9 commit f0fbbed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ This extension will download `haskell-language-server` binaries to a specific lo
|----------|------|
| macOS | `~/Library/Application\ Support/Code/User/globalStorage/alanz.vscode-hie-server/` |
| Windows | `%APPDATA%\Code\User\globalStorage\alanz.vscode-hie-server` |
| Linux | `$HOME/.config/Code/User/settings.json` |
| Linux | `$HOME/.config/Code/User/globalStorage/alanz.vscode-hie-server` |

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.

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,12 @@
},
"commands": [
{
"command": "hie.commands.importIdentifier",
"command": "haskell.commands.importIdentifier",
"title": "Haskell: Import identifier",
"description": "Imports a function or type based on a Hoogle search"
},
{
"command": "hie.commands.restartHie",
"command": "haskell.commands.restartServer",
"title": "Haskell: Restart Haskell LSP server",
"description": "Restart the Haskell LSP server"
}
Expand Down

0 comments on commit f0fbbed

Please sign in to comment.