-
Notifications
You must be signed in to change notification settings - Fork 77
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
feat: Add 'delete' into the view context menu #343
Conversation
Awesome, this is just what I wanted! If it's not too much to ask for, do you think you could add a 'rename' option to the menu? I think you can do it via the extension API, and hopefully vscode-java would be able to pick up on that rename event, in order to provide a refactoring to change the class name. (Which it does when you rename a java file from the file explorer.) I understand if this is not trivial to add because of API limitations, but it would be very nice to have if it's possible to implement. |
@0dinD Yes, // BTW, we will have the National Holiday at our side so it will happen after the holiday (about in Mid. Oct.) |
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.
@xqzlgy2 Could you please also investigate if it is possible to set default keyboard shortcut for this command in package.json
?
Thanks @xqzlgy2! |
Enable User to delete package/file in context menu like below.
File/Type
intoContextValueType
to distinguish common files and Java source files.+enum/+class/+interface
as attributes to Type for detecting different kinds of source files.part of #207