From 61d84a702383bed0e0bd0b618894d0cd34453c55 Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Tue, 2 Aug 2022 13:04:04 -0700 Subject: [PATCH] [Schema] Move scroll mark settings from global to profile settings (#13655) Updates the schema such that the scroll mark settings are defined as profile settings instead of global settings (because they're actually profile settings). Separately (but still relevant), I've also updated the release notes. Closes #13583 --- doc/cascadia/profiles.schema.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/cascadia/profiles.schema.json b/doc/cascadia/profiles.schema.json index d740324b310..a0e2b20507e 100644 --- a/doc/cascadia/profiles.schema.json +++ b/doc/cascadia/profiles.schema.json @@ -1733,16 +1733,6 @@ "description": "When set to true, URLs will be detected by the Terminal. This will cause URLs to underline on hover and be clickable by pressing Ctrl.", "type": "boolean" }, - "experimental.autoMarkPrompts": { - "default": false, - "description": "When set to true, prompts will automatically be marked.", - "type": "boolean" - }, - "experimental.showMarksOnScrollbar": { - "default": false, - "description": "When set to true, marks added to the buffer via the addMark action will appear on the scrollbar.", - "type": "boolean" - }, "disableAnimations": { "default": false, "description": "When set to `true`, visual animations will be disabled across the application.", @@ -2171,6 +2161,11 @@ "default": false, "description": "When true, this profile should always open in an elevated context. If the window isn't running as an Administrator, then a new elevated window will be created." }, + "experimental.autoMarkPrompts": { + "default": false, + "description": "When set to true, prompts will automatically be marked.", + "type": "boolean" + }, "experimental.connection.passthroughMode": { "description": "When set to true, directs the PTY for this connection to use pass-through mode instead of the original Conhost PTY simulation engine. This is an experimental feature, and its continued existence is not guaranteed.", "type": "boolean" @@ -2179,6 +2174,11 @@ "description": "When set to true, enable retro terminal effects. This is an experimental feature, and its continued existence is not guaranteed.", "type": "boolean" }, + "experimental.showMarksOnScrollbar": { + "default": false, + "description": "When set to true, marks added to the buffer via the addMark action will appear on the scrollbar.", + "type": "boolean" + }, "experimental.pixelShaderPath": { "description": "Use to set a path to a pixel shader to use with the Terminal. Overrides `experimental.retroTerminalEffect`. This is an experimental feature, and its continued existence is not guaranteed.", "type": "string"