You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to use the luau-debugger VS Code extension and luau-lsp in the same workspace, I'm unable to set breakpoints. The UI for setting them in the gutter is turned off.
I can fix it by updating package.json in luau-debugger to use luau instead of lua as a language:
"contributes": {
"breakpoints": [
{
"language": "luau" // <-- Change here
}
],
"debuggers": [
{
"type": "luau",
"languages": [
"luau" // <-- And here
],
I'm not sure if this change is desired for everyone but I thought I'd mention it in case it helps others, or maybe there's a better way to fix it.
The text was updated successfully, but these errors were encountered:
When I try to use the luau-debugger VS Code extension and luau-lsp in the same workspace, I'm unable to set breakpoints. The UI for setting them in the gutter is turned off.
I can fix it by updating
package.json
in luau-debugger to useluau
instead oflua
as a language:I'm not sure if this change is desired for everyone but I thought I'd mention it in case it helps others, or maybe there's a better way to fix it.
The text was updated successfully, but these errors were encountered: