From 43739883f1ccb42684cefcbe009a53070e8e0026 Mon Sep 17 00:00:00 2001 From: Javier Neira Date: Mon, 25 May 2020 10:36:37 +0200 Subject: [PATCH 1/2] Add troubleshooting section It includes two common issues reported: * the extension fails to open a single haskell source file * it is originally tracked in #140 * it was the cause of #221 * other haskell extension could interfere: #231 --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index c7f24e2d..76827681 100644 --- a/README.md +++ b/README.md @@ -155,6 +155,16 @@ HIE is now started for each workspace folder you have in your multi-root workspa Now you will see the information which you can use to diagnose or report a problem +### Troubleshooting + +* Usually the error or unexpected behaviour is already reported in issue tracker of the haskell language server [used by the extension](#hie-variant). Finding the issue in its issue tracker could be useful to help resolve it. Sometimes even it includes a workaround for the issue. +* Haskell language servers issue trackers: + * haskell-ide-engine (the default haskell language server): https://github.com/haskell/haskell-ide-engine/issues + * haskell-language-server: https://github.com/haskell/haskell-language-server/issues +* *Common issues*: + * For now, the extension is not able to open a single haskell source file. You need to open a workspace or folder, configured to be built with cabal, stack or other hie-bios compatible program. + * Check you don't have other haskell extensions active, they can interfere with each other. + ## Release Notes See the [Changelog](https://github.com/alanz/vscode-hie-server/blob/master/Changelog.md) for more details. From b41f3a5732a4b81e29f6788fb7cb9183554faf56 Mon Sep 17 00:00:00 2001 From: Javier Neira Date: Mon, 25 May 2020 10:56:21 +0200 Subject: [PATCH 2/2] Remove duplication --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 76827681..f90db3f0 100644 --- a/README.md +++ b/README.md @@ -157,7 +157,7 @@ Now you will see the information which you can use to diagnose or report a probl ### Troubleshooting -* Usually the error or unexpected behaviour is already reported in issue tracker of the haskell language server [used by the extension](#hie-variant). Finding the issue in its issue tracker could be useful to help resolve it. Sometimes even it includes a workaround for the issue. +* Usually the error or unexpected behaviour is already reported in the haskell language server [used by the extension](#hie-variant). Finding the issue in its issue tracker could be useful to help resolve it. Sometimes even it includes a workaround for the issue. * Haskell language servers issue trackers: * haskell-ide-engine (the default haskell language server): https://github.com/haskell/haskell-ide-engine/issues * haskell-language-server: https://github.com/haskell/haskell-language-server/issues