-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathProjectSettingsTextViewListener.cs
33 lines (30 loc) · 1.13 KB
/
ProjectSettingsTextViewListener.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
using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Text.Editor;
using Microsoft.VisualStudio.Utilities;
using System.ComponentModel.Composition;
using System.Threading.Tasks;
namespace MadsKristensen.EditorExtensions.Options
{
[Export(typeof(IWpfTextViewCreationListener))]
[ContentType("XML")]
[TextViewRole(PredefinedTextViewRoles.Document)]
internal class ProjectSettingsTextViewListener : IWpfTextViewCreationListener
{
public void TextViewCreated(IWpfTextView textView)
{
ITextDocument document;
textView.TextDataModel.DocumentBuffer.Properties.TryGetProperty(typeof(ITextDocument), out document);
if (document != null)
{
document.FileActionOccurred += document_FileActionOccurred;
}
}
private void document_FileActionOccurred(object sender, TextDocumentFileActionEventArgs e)
{
if (e.FileActionType == FileActionTypes.ContentSavedToDisk && e.FilePath.EndsWith(Settings._fileName))
{
Task.Run(() => Settings.UpdateCache());
}
}
}
}