Yacoub Massad

Results 13 comments of Yacoub Massad

I am trying to create a custom editor that contains text from multiple text buffers.

The page you mentioned talks about projection buffers from a "text buffer" perspective. How would one use such a buffer in an editor?

Given an ITextBuffer, how would you create a view? Is there a TextViewFactory that one can use? I was reading the following article: https://joshvarty.com/2014/08/01/ripping-the-visual-studio-editor-apart-with-projection-buffers/ Where ITextViewModelProvider is used, and I...

Thanks @olegtk I want to replace some C# code with things like adornments. I did successfully replace these pieces of code with adornments but one issue is that you lose...

@olegtk , I, my self, am not sure what is the exact behavior that I need. In any case, there are only a finite amount of behaviors that can be...

I see value in deploying the analyzer via a NuGet package. One thing to solve though is how to get the settings. PurityAnalyzer has settings (that allow people to mark...

Another thing: In the same method, once we run all tasks, we then loop over them to await for completion. What happens when one task throws an exception? The following...

@Gerardo-Sista , I am using this library in production if that is what you mean. I only update it if I need something specific. Are you using it?

There are problems with the Pure attribute from the BCL. Please take a look at this: https://github.com/ymassad/PurityAnalyzer/pull/5

Would this feature support this? ``` public class GenericClass { [SomeAttribute] public void DoSomething(T input) { } } public class SomeAttribute : Attribute { } ```