The absolute path varies based on the release and platform on which AutoCAD was installed.
A new file named launch.json that contains the AutoLISP Debug: Attach configuration should now be open in the current editor window.
{
"configurations":
[
{
"type": "launchlisp",
"request": "launch",
"name": "Autolisp Debug: Launch",
"attributes": {
"path": "C:\\Program Files\\Autodesk\\AutoCAD 2021\\acad.exe",
"params": ""
}
},
{
"type": "attachlisp",
"request": "attach",
"name": "Autolisp Debug: Attach",
"attributes": {
"process": "acad"
}
}
]
}
{ "configurations": [ { "type": "launchlisp", "request": "launch", "name": "Autolisp Debug: Launch", "attributes": { "path": "/Applications/Autodesk/AutoCAD 2021/AutoCAD 2021.app/Contents/MacOS/AutoCAD", "params": "" } }, { "type": "attachlisp", "request": "attach", "name": "Autolisp Debug: Attach", "attributes": { "process": "AutoCAD" } } ] }