From a09c98a6dcccf146d32cb7ae5f721dc10f37a514 Mon Sep 17 00:00:00 2001 From: Gin Date: Tue, 20 Aug 2024 02:52:04 +0800 Subject: [PATCH] Update micro.json (#3433) Based on the description, the type here should be boolean rather than a string. --- data/micro.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/micro.json b/data/micro.json index 49fdc662..8a31adda 100644 --- a/data/micro.json +++ b/data/micro.json @@ -305,8 +305,8 @@ }, "statusline": { "description": "Whether to display a status line\nhttps://github.com/zyedidia/micro/blob/master/runtime/help/options.md#options", - "type": "string", - "default": "sudo" + "type": "boolean", + "default": true }, "sucmd": { "description": "A super user command\nhttps://github.com/zyedidia/micro/blob/master/runtime/help/options.md#options", @@ -364,4 +364,4 @@ } }, "additionalProperties": false -} \ No newline at end of file +}