-
Notifications
You must be signed in to change notification settings - Fork 0
/
BraceContextProvider.cs
38 lines (36 loc) · 1.18 KB
/
BraceContextProvider.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Text.Adornments;
using Microsoft.VisualStudio.Utilities;
using System.ComponentModel.Composition;
using System.Threading;
using System.Threading.Tasks;
namespace BraceProvider
{
[Export(typeof(IBlockContextProvider))]
[Name("Demo Block Context Provider")]
[ContentType("text")]
[Order(Before = "Default")]
class BraceContextProvider : IBlockContextProvider
{
public async Task<IBlockContextSource> TryCreateBlockContextSourceAsync(ITextBuffer buffer, CancellationToken token)
{
IBlockContextSource source = null;
source = await CreateBlockContext(buffer, token);
return source;
}
public async Task<IBlockContextSource> CreateBlockContext(ITextBuffer buffer, CancellationToken token)
{
IBlockContextSource source = null;
await Task.Run(() =>
{
if (token.IsCancellationRequested)
return;
else
{
source = new BraceBlockContextSource(buffer);
}
});
return source;
}
}
}