We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea58a4b commit c00a748Copy full SHA for c00a748
src/hlsBinaries.ts
@@ -315,6 +315,12 @@ export async function downloadHaskellLanguageServer(
315
316
const title = `Downloading haskell-language-server ${release.tag_name} for GHC ${ghcVersion}`;
317
await downloadFile(title, asset.browser_download_url, binaryDest);
318
+ if (ghcVersion.startsWith('9.')) {
319
+ window.showWarningMessage(
320
+ 'Currently, HLS supports GHC 9 only partially. ' +
321
+ 'See [issue #297](https://github.com/haskell/haskell-language-server/issues/297) for more detail.'
322
+ );
323
+ }
324
return binaryDest;
325
}
326
0 commit comments