(id: string)
| 209 | } |
| 210 | |
| 211 | export async function documentSave(id: string): Promise<void> { |
| 212 | const target = findTargetUri(id); |
| 213 | const targetDocument = await workspace.openTextDocument(target); |
| 214 | await targetDocument.save(); |
| 215 | } |
| 216 | |
| 217 | export async function documentSaveAll(): Promise<void> { |
| 218 | await workspace.saveAll(); |
no test coverage detected