From 7177afc488dbec85efe4adfdd12e27725cce18de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20=C5=A0ebek?= <44544735+xsebek@users.noreply.github.com> Date: Sun, 20 Mar 2022 01:28:12 +0100 Subject: [PATCH] Add eval plugin configuration Eval plugin gains new configuration options in haskell/haskell-language-server#2622 (diff) and haskell/haskell-language-server#2775 (exception). --- package.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/package.json b/package.json index ba264628..e84e494a 100644 --- a/package.json +++ b/package.json @@ -227,6 +227,18 @@ "default": true, "description": "Enables eval plugin" }, + "haskell.plugin.eval.config.diff": { + "markdownDescription": "When reloading haddock test results in changes, mark it with WAS/NOW.", + "scope": "resource", + "default": true, + "type": "boolean" + }, + "haskell.plugin.eval.config.exception": { + "markdownDescription": "When the command results in an exception, mark it with `*** Exception:`.", + "scope": "resource", + "default": false, + "type": "boolean" + }, "haskell.plugin.moduleName.globalOn": { "scope": "resource", "type": "boolean",