Not sure if it's NTVS or the TypeScript plugin.
Pasting the following text in a TypeScript file
```javascript
/**
* Try to get resources to write some of the to-be-done archives to the database
*/
private _doSomeWriting(): Promise<void> {
}
```
consistently yields
```javascript
/**
ry to get resources to write some of the to-be-done archives to the database
private _doSomeWriting(): Promise<void> {
}
```
i.e. the top comment is mutilated. Pressing Ctrl+Z once solves it.
Pasting the following text in a TypeScript file
```javascript
/**
* Try to get resources to write some of the to-be-done archives to the database
*/
private _doSomeWriting(): Promise<void> {
}
```
consistently yields
```javascript
/**
ry to get resources to write some of the to-be-done archives to the database
private _doSomeWriting(): Promise<void> {
}
```
i.e. the top comment is mutilated. Pressing Ctrl+Z once solves it.