Does anybody know why the BREAKPOINTS GUI PANEL in Cursor is not editable and refinable?

Hi all,

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

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?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.