Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix enableDebugProtocol and enhanceREPLCompletions autocomplete defaults #617

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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