Matt Bierner

Results 268 comments of Matt Bierner

@jrieken I think that would work for an `onDidCopy` event that lets extensions update the clipboard. However I do think we want VS Code to drive what happens on paste....

@dbaeumer The current api proposal flows looks something like: 1. User copies text 1. The extension is notified that a copy has happened. The extension generates an opaque blob of...

@lszomoru Yes, I think there are two issues here: 1. For code actions that use commands, many existing extensions don't know how to work with the scm input. This causes...

@rebornix To support this, we need to transfer the entire output to the webview. Today I believe we just send over the output for the selected item mime type That...

@roblourens This appears to be an electron bug microsoft/vscode#125993 Unfortunately I don't know how to resolve it or work around it

Can you share a project that demonstrates the issue?

@steve-ross Can you share the json file that causes the problem (feel free to turn the actual contents into gibberish as long as it still demonstrates the issue)

Thanks @steve-ross Relevant TS Server log from a JS file that imports that large json file: ```js //@ts-check import * as x from './example-subscriptions-clean-emails.json' // type x. here ``` [tsserver.log](https://github.com/microsoft/TypeScript/files/8318358/tsserver.log)...

[steve-ross](https://github.com/steve-ross) in the future can you please make sure to open a new issue when reporting problems. I just assumed you were the OP but I think you're talking about...

I'm OK with not including this as builtin TS functionality given the compliance concerns. Is there any way we can leverage TSServer for these scenarios however? Perhaps with a TSServer...