-
Notifications
You must be signed in to change notification settings - Fork 9
add new changes to work with in cursor editor #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
rhalaly
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your contribution!
I saw that you added the commandPalette and mostly reorder stuff and remove stuff. Some of them are crucial for the extension to run properly.
Please try to reduce the diffs as much as possible and add only the crucial fields for Cursor editor.
BTW, I saw that the extension is properly supported by other VS Code distributions, what is the unique requirement for it?
| "activationEvents": [ | ||
| "onStartupFinished", | ||
| "onView:fileExplorer", | ||
| "onCommand:scope-to-this.scope", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are needed in some cases where you run the commands before VS Code is loaded or file explorer is opened. Please revert
| { | ||
| "command": "scope-to-this.clear", | ||
| "group": "navigation", | ||
| "when": "view == 'workbench.explorer.fileView' && scopeToThis.scoped" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I highly encourage to reduce unnecessary diffs. Since this is just a reorder, please revert
| "group": "navigation" | ||
| } | ||
| ], | ||
| "explorer/context": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment regarding reordring, please keep that in the same place
| { | ||
| "command": "scope-to-this.scope", | ||
| "group": "2_workspace@1", | ||
| "when": "activeViewlet == 'workbench.view.explorer' && explorerResourceIsFolder" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is mandatory, why removing it? Please revert
| "explorer/context": [ | ||
| { | ||
| "command": "scope-to-this.scope", | ||
| "group": "navigation" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why changing the group?
|
Hi @ekinertac , please make changes as suggested cause i would love to use this extension on cursor. |
|
up!! |
Love the extension but it doesn't worked as expected in Cursor editor. add some package.json definitions to work without issues.