Skip to content
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

API 💄 #180911

Merged
merged 1 commit into from Apr 26, 2023
Merged

API 💄 #180911

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/vscode-dts/vscode.proposed.saveEditor.d.ts
Expand Up @@ -11,7 +11,7 @@ declare module 'vscode' {

/**
* Saves the editor identified by the given resource and returns the resulting resource or `undefined`
* if save was not successful.
* if save was not successful or no editor with the given resource was found.
*
* **Note** that an editor with the provided resource must be opened in order to be saved.
*
Expand All @@ -22,7 +22,8 @@ declare module 'vscode' {

/**
* Saves the editor identified by the given resource to a new file name as provided by the user and
* returns the resulting resource or `undefined` if save was not successful or cancelled.
* returns the resulting resource or `undefined` if save was not successful or cancelled or no editor
* with the given resource was found.
*
* **Note** that an editor with the provided resource must be opened in order to be saved as.
*
Expand Down