From f22b8dfcfe22de633e63ebc427e6139c0a5abda0 Mon Sep 17 00:00:00 2001 From: Sam Doran Date: Mon, 25 Jan 2021 11:02:48 -0500 Subject: [PATCH] Increase max value for line length The default max value for a stepper when undefined is 100. If it is manually set to a value greater than 100 and the up or down arrow on the stepper is clicked, it will go to 100. Setting the max value fixes this issue. --- extension.json | 1 + 1 file changed, 1 insertion(+) diff --git a/extension.json b/extension.json index 382ead2..ec1c1f8 100644 --- a/extension.json +++ b/extension.json @@ -352,6 +352,7 @@ "type": "number", "title": "Maximum Line Length", "default": 79, + "max": 1024, "description": "Set maximum allowed line length." } ]