-
Notifications
You must be signed in to change notification settings - Fork 142
Closed as not planned
Labels
bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bug
Description
- Copilot Chat Extension Version: 0.23.2
- VS Code Version: 1.96.2
- OS Version: MacOS 14.7.2
Using copilot-debug command with Ruby generates a configuration that's not able to be used with non-deprecated debugger extensions.
Steps to Reproduce:
copilot-debug --print bundle exec rails s- Configuration generated as:
{
"type": "ruby",
"request": "launch",
"name": "Launch Rails Server",
"program": "${workspaceFolder}/bin/rails",
"args": [
"s"
],
"useBundler": true
}
-
Running just
copilot-debug bundle exec rails swarnsWe generated a "ruby" debug configuration, but you don't have an extension installed for that. Do you want to look for one?. Searching for extensions brings up deprecatedrubyextension as first result.

-
The generated launch configuration can be made to work with few tweaks, mainly using
"type": "ruby_lsp"with associatedruby-lspextension.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugIssue identified by VS Code Team member as probable bugIssue identified by VS Code Team member as probable bug
