-
Notifications
You must be signed in to change notification settings - Fork 123
feat(extension): Support renaming from TypeScript files #1589
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(extension): Support renaming from TypeScript files #1589
Conversation
The plugin code move into this PR |
ba817c0
to
9fb4cd3
Compare
Adding the blocked label. This has to wait for the 13.2 release here since we don't yet have a branch for the next version that angular/angular#44696 was included in. |
9fb4cd3
to
3dd53d0
Compare
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.
@ivanwonder LGTM aside from the commit message. Like the other commit, could you write it as the feature you're providing rather than the implementation details about how that was achieved?
That is:
feat(extension): Support renaming from TypeScript files
<<details about how you did this. Disable rename provider of built in
TS extension so VSCode asks the Angular Language Service for the answer instead. >>
This PR will add a new package that is applied to the built-in TS extension by the config [`typescriptServerPlugins`][1] and is used to disable rename provider of the built-in TS extension so VSCode asks the Angular Language Service for the answer instead. Detail about this package is [here][2]. [1]: https://code.visualstudio.com/api/references/contribution-points#contributes.typescriptServerPlugins [2]: https://github.com/angular/angular/blob/master/packages/language-service/README.md#override-rename-ts-plugin
3dd53d0
to
a898b11
Compare
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 issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
This PR will add a new package that is applied to the built-in TS
extension by the config
typescriptServerPlugins
and is usedto disable rename provider of the built-in TS extension so VSCode
asks the Angular Language Service for the answer instead.
Detail about this package is here.