Skip to content

Commit

Permalink
Corrected default when auto completing for enableDebugProtocol and en…
Browse files Browse the repository at this point in the history
…hanceREPLCompletions settings
  • Loading branch information
chrisdp committed Feb 12, 2025
1 parent 8f8b3c5 commit 2242f6c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/extension-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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"
},
Expand Down Expand Up @@ -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": {
Expand Down

0 comments on commit 2242f6c

Please sign in to comment.