Replies: 1 comment
-
I found solution: [Export(typeof(ProposalSource))]
[Name("ProposalSource")]
[Order(Before = "InlineCSharpProposalSourceProvider")]
[Order(Before = "Highest Priority")]
[ContentType("any")]
internal class ProposalSource : ProposalSourceBase
{ ... }
[Export(typeof(ProposalSourceProvider))]
[Export(typeof(ProposalSourceProviderBase))]
[Name("ProposalSourceProvider")]
[Order(Before = "InlineCSharpProposalSourceProvider")]
[Order(Before = "IntelliCodeCSharpProposalSource")]
[Order(Before = "Highest Priority")]
[ContentType("any")]
internal class ProposalSourceProvider : ProposalSourceProviderBase, IDisposable
{ ... } csproj must be mef asset. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi.
I know how to implement Roslyn based completion with context menu, where one can choose specific completion item and press Enter, like this:
Does anyone know how to extend in-line completion, like this:
(red rectangle is around in-line suggestion)
In any case, thanks guys, you helped me a lot in my previous questions!
Beta Was this translation helpful? Give feedback.
All reactions