You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In webstorm, when you rename the default export of a file, it asks you if you want to also rename the file name (and references to that export in other files). It's a pretty nice feature.
Return a WorkspaceEdit containing changes to rename MyDefaultExport --> MyDefaultExport2 in the file (it does this)
Checks the client's capabilities for workspaceEdit.resourceOperations and returns a WorkspaceEdit containing a rename for MyDefaultExport.ts --> MyDefaultExport2.ts (it does not do this), as well as corresponding renames in other files
Uh oh!
There was an error while loading. Please reload this page.
(feature request)
In webstorm, when you rename the default export of a file, it asks you if you want to also rename the file name (and references to that export in other files). It's a pretty nice feature.
Example:
Rename request
MyDefaultExport
-->MyDefaultExport2
Expected: typescript-langauge-server would:
WorkspaceEdit
containing changes to renameMyDefaultExport
-->MyDefaultExport2
in the file (it does this)workspaceEdit.resourceOperations
and returns aWorkspaceEdit
containing a rename forMyDefaultExport.ts
-->MyDefaultExport2.ts
(it does not do this), as well as corresponding renames in other filesDo you think this may be something typescript-language-server could support?
The text was updated successfully, but these errors were encountered: