Amadeusz Wieczorek
Amadeusz Wieczorek
I just proposed #999 which may help with your workflow by adding a keyboard shortcut to open ILSpy through shell. This does not resolve your request, but I thought it...
@dorofino here's the code I used to get all grouping information: ``` csharp MailChimpManager mc = new MailChimpManager(APIKEY); var lists = mc.GetLists().Data; foreach (var list in lists) { var listName...
> I was hoping to just get #load modified to support both file paths and http[s] paths, however. I'd like that too, but given... > #load is not a scriptcs...
I fixed this issue by detecting comments `//` using a method similar to [`IsUsingLine`](https://github.com/scriptcs/scriptcs/blob/288e7d5c6b3f2e6d4bd91da54a60e1ce8cc07514/src/ScriptCs.Core/FilePreProcessor.cs#L150-L153), but multi line comments `/*` would require entirely different way of parsing the file. Not handling...
# Up to date list of things that are not in the API: * `IAsyncCompletionSession` event that the selection changed. We fire an event when items were updated, but not...
that's correct. There will a few more minor changes coming tonight. I'm sorry for inconvenience and will try to update this guide when I have a moment
I’ve made some changes to the completion API and would like to seek partner signoff. Notably, most methods of the API now have a reference to IAsyncCompletionSession, so that you...
Thanks, Cyrus. That's a good point. Do we have special behavior on click or Ctrl+Space? Enter can be detected through TypeChar `\n`. As far as what triggered the completion goes,...
> How does one know if the item was inserted due to ctrl-space vs due to normal space? When we call `IAsyncCompletionItemSource.GetCompletionContextAsync` we pass in the initial `CompletionTrigger` that has...
Absolutely, this is preserved: If there is no unique item, first Ctrl+Space will open completion and user has opportunity to refine the results. What you can't do is know that...