From 2ee85e536bb5bf235160c51c4ba24274f073690e Mon Sep 17 00:00:00 2001 From: Tom Kenny Date: Mon, 8 Mar 2021 01:50:53 +0800 Subject: [PATCH] Make the settings descriptions a bit more explicit - Also, a couple of grammar fixes --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 177db25..82770d1 100644 --- a/package.json +++ b/package.json @@ -32,22 +32,22 @@ "ActiveFileInStatusBar.enable": { "type": "boolean", "default": true, - "description": "Enable/Disable ActiveFileInStatusBar" + "description": "Enable/disable ActiveFileInStatusBar" }, "ActiveFileInStatusBar.fullpath": { "type": "boolean", "default": true, - "description": "Show fullpath or relative path in status bar." + "description": "Display the active file's full absolute path instead of its relative path from the workspace." }, "ActiveFileInStatusBar.revealFile": { "type": "boolean", "default": false, - "description": "Reveal the active file in the file system." + "description": "Upon clicking this extension's status bar component, reveal the active file in the OS file browser (eg. Finder, Explorer)." }, "ActiveFileInStatusBar.color": { "type": "string", "default": "", - "description": "Set text color for the filename in the status bar." + "description": "Set the text color for the filename in the status bar." } } }