Skip to content

Does anybody know why the BREAKPOINTS GUI PANEL in VSCode is not editable and refinable? #1881

@tjoymeed

Description

@tjoymeed

Hi all,

There is no way to edit and refine the "Raised Exceptions" (not editable):

Image

What happened?

I am using the following CURSOR.AI 's extension on local PC (Win 11).

Identifier
ms-python.debugpy
Version
2024.6.0
Last Updated
2025-03-29, 18:52:56
Size
18.2 MB
Marketplace
Published
2023-06-14, 11:20:56
Last Released
2025-03-11, 03:43:20

And the remote Linux server side is:

debugpy 1.8.13

And I also tried setting the launch.json using "exceptionOptions" etc. to setup ignoring one particular exception but none of them worked.

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Attach to Rank 0",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/home/m/"
}
],
"justMyCode": false,
"logToFile": true,
"exceptionOptions": {
"ignore": ["transformers.utils.import_utils.OptionalDependencyNotAvailable"]
}
},
{
"name": "Python: Attach to Rank 1",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5679
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/home/m/"
}
],
"justMyCode": false,
"logToFile": true,
"exceptionOptions": {
"ignore": ["transformers.utils.import_utils.OptionalDependencyNotAvailable"]
}
},
{
"name": "Python: Attach to Rank 2",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5680
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/home/m/"
}
],
"justMyCode": false,
"logToFile": true,
"exceptionOptions": {
"ignore": ["transformers.utils.import_utils.OptionalDependencyNotAvailable"]
}
},
{
"name": "Python: Attach to Rank 3",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5681
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/home/m/"
}
],
"justMyCode": false,
"logToFile": true,
"exceptionOptions": {
"ignore": ["transformers.utils.import_utils.OptionalDependencyNotAvailable"]
}
}
],
"compounds": [
{
"name": "Attach to All Ranks",
"configurations": [
"Python: Attach to Rank 0",
"Python: Attach to Rank 1",
"Python: Attach to Rank 2",
"Python: Attach to Rank 3"
],
"stopAll": true
}
]
}

Anybody know why?

Metadata

Metadata

Assignees

Labels

needs reproIssue has not been reproduced yet

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions