My extension is not being activated in Cursor

I’m developing an extension which works properly in VSCode, but when debugging it in Cursor, it is never activated, I have already tested adding “*” to the activationEvents:

I’ve had this issue as well. I wound up using vsce to package it and drag the package file into the extensions menu.

1 Like

I have had the same issue.
Check out what vscode version cursor is using from the about menu
mine uses 1.93.1 while the hello world example auto-generated defaulted to 1.96.0
The solution was to downgrade the following in package.json and npm install again

...
  "engines": {
    "vscode": "^1.93.0"
  },
...
"devDependencies": {
    "@types/vscode": "^1.93.0",
...

related: