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

Breakpoints not available when using with luau-lsp #5

Open
mikejohnstn opened this issue Dec 28, 2024 · 2 comments
Open

Breakpoints not available when using with luau-lsp #5

mikejohnstn opened this issue Dec 28, 2024 · 2 comments

Comments

@mikejohnstn
Copy link

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.

@sssooonnnggg
Copy link
Owner

Thank you for the report, I will try to resolve the conflict issues later😀

@sssooonnnggg
Copy link
Owner

Hi, it looks fixed, try again please.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants