From e1be55efb33cf585345a9c626f03999225514e5d Mon Sep 17 00:00:00 2001 From: jneira Date: Fri, 17 Dec 2021 13:22:20 +0100 Subject: [PATCH 1/4] Disable alternateNumberFormat temporary --- haskell-language-server.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haskell-language-server.cabal b/haskell-language-server.cabal index f0c1807906..a57e526c9d 100644 --- a/haskell-language-server.cabal +++ b/haskell-language-server.cabal @@ -165,7 +165,7 @@ flag splice flag alternateNumberFormat description: Enable Alternate Number Format plugin - default: True + default: False manual: True flag qualifyImportedNames From 2f38673478953e53c3befe020f2a0ced0f38a9fa Mon Sep 17 00:00:00 2001 From: jneira Date: Fri, 17 Dec 2021 13:26:50 +0100 Subject: [PATCH 2/4] Disable alternateNumberFormat tests --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 78658238bd..7ead92dbeb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -244,7 +244,7 @@ jobs: name: Test hls-hlint-plugin test suite run: cabal test hls-hlint-plugin --test-options="$TEST_OPTS" || cabal test hls-hlint-plugin --test-options="$TEST_OPTS" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test hls-hlint-plugin --test-options="$TEST_OPTS" - - if: matrix.test + - if: matrix.test && false name: Test hls-alternate-number-format-plugin test suite run: cabal test hls-alternate-number-format-plugin --test-options="$TEST_OPTS" || cabal test hls-alternate-number-format-plugin --test-options="$TEST_OPTS" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test hls-alternate-number-format-plugin --test-options="$TEST_OPTS" From 7d99b2551c1124999e084cd0ec12a886ddcd9263 Mon Sep 17 00:00:00 2001 From: jneira Date: Fri, 17 Dec 2021 13:30:58 +0100 Subject: [PATCH 3/4] Add a warn in docs --- docs/features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features.md b/docs/features.md index 37c203360b..9e0e33416a 100644 --- a/docs/features.md +++ b/docs/features.md @@ -17,7 +17,7 @@ You can watch demos for some of these features [below](#demos). - [Module name suggestions](#module-names) for insertion or correction - [Call hierarchy support](#call-hierarchy) - [Qualify names from an import declaration](#qualify-imported-names) in your code -- [Suggest alternate numeric formats](#alternate-number-formatting) +- [Suggest alternate numeric formats](#alternate-number-formatting). This plugin is not included by default yet. ## Demos From c4e7a331ba3f2486472a34acfda697c347eff5ee Mon Sep 17 00:00:00 2001 From: jneira Date: Fri, 17 Dec 2021 22:32:33 +0100 Subject: [PATCH 4/4] Add link to issue in docs --- docs/features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features.md b/docs/features.md index 9e0e33416a..5ee46320d9 100644 --- a/docs/features.md +++ b/docs/features.md @@ -17,7 +17,7 @@ You can watch demos for some of these features [below](#demos). - [Module name suggestions](#module-names) for insertion or correction - [Call hierarchy support](#call-hierarchy) - [Qualify names from an import declaration](#qualify-imported-names) in your code -- [Suggest alternate numeric formats](#alternate-number-formatting). This plugin is not included by default yet. +- [Suggest alternate numeric formats](#alternate-number-formatting). This plugin is not included by default yet due to a performance issue, see ## Demos