diff --git a/docs/extension-settings.md b/docs/extension-settings.md index ffe8aa84..187e6aee 100644 --- a/docs/extension-settings.md +++ b/docs/extension-settings.md @@ -77,7 +77,7 @@ Defaults to `true`. Enables automatic population of the debug variable panel on ### `brightscript.debug.autoResolveVirtualVariables` (Experimental) Defaults to `false`. Enables automatic population of the virtual variables. ### `brightscript.debug.enhanceREPLCompletions` -Defaults to `true`. +Defaults to `false`. Enables scanning deployment files for additional REPL completions, such as user-defined functions. This process runs in a background diff --git a/package.json b/package.json index 9cf1a2e2..3702cbd6 100644 --- a/package.json +++ b/package.json @@ -800,7 +800,7 @@ "enhanceREPLCompletions": { "type": "boolean", "description": "Enables scanning deployment files for additional REPL completions, such as user-defined functions. This process runs in a background thread and may be resource-intensive.", - "default": true + "default": false }, "showHiddenVariables": { "type": "boolean", @@ -963,7 +963,7 @@ }, "enableDebugProtocol": { "type": "boolean", - "default": false, + "default": true, "description": "If true, the debugger will use the new BrightScript debug protocol, and will disable the telnet debugger. See this link for more details: https://developer.roku.com/en-ca/docs/developer-program/debugging/socket-based-debugger.md" }, "logLevel": { @@ -2016,7 +2016,7 @@ }, "brightscript.debug.enableDebugProtocol": { "type": "boolean", - "default": false, + "default": true, "description": "If true, the debugger will use the new BrightScript debug protocol, and will disable the telnet debugger. See this link for more details: https://developer.roku.com/en-ca/docs/developer-program/debugging/socket-based-debugger.md", "scope": "resource" }, @@ -2253,7 +2253,7 @@ "brightscript.debug.enhanceREPLCompletions": { "type": "boolean", "description": "Enables scanning deployment files for additional REPL completions, such as user-defined functions. This process runs in a background thread and may be resource-intensive.", - "default": true, + "default": false, "scope": "resource" }, "brightscript.debug.envFile": {