Danny Tuppeny
Danny Tuppeny
If I understand correctly, in the "Paste Action Provider" example it looks like the metadata is collected during the paste operation: ```ts // Get metadata about copied text const metadata...
> @DanTup The extension would need to save off the metadata in such a way that, on paste, the extension can handle any changes that happened since the copy Yep,...
> This came up lately in LSP as well and from my experience implementing this for languages in the past I think there are more things to consider > >...
> In the first two paragraphs I attempt to reason why copy itself cannot be made async. Maybe we could add an onDidCopy that would execute immediately after the copy...
@badaszszsz I added some notes on https://github.com/Dart-Code/Dart-Code/issues/351. You wouldn't need to recompile VS Code, you can use the Insiders version to test out proposed APIs. However Dart uses LSP, so...
> Maybe when the save gets remoted to the guest, the guest fires the code action as if it was the guest that performed the save I'm not familiar with...
> What do you think about having it also override the `editor.codeActionsOnSave` setting to not include any code actions, as they would always be run on the host in response...
@Balajiomsakthi Bit of a stab in the dark, but > I tried to delete the bin/cache/ directory in my flutter. I wonder if Flutter's Dart SDK is missing so it's...
@adriens how are you setting the Flutter SDK up on GH Actions? This would happen if you only have a standard Dart SDK?
You need an action that can set up Flutter. I've been working on one I use for the VS Code extension's integration tests that you're welcome to use on the...