-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathTypeScript.cs
30 lines (25 loc) · 936 Bytes
/
TypeScript.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
using Microsoft.VisualStudio.Shell;
using System.ComponentModel;
namespace MadsKristensen.EditorExtensions
{
class TypeScriptOptions : DialogPage
{
public TypeScriptOptions()
{
Settings.Updated += delegate { LoadSettingsFromStorage(); };
}
public override void SaveSettingsToStorage()
{
Settings.SetValue(WESettings.Keys.ShowTypeScriptPreviewWindow, ShowTypeScriptPreviewWindow);
Settings.Save();
}
public override void LoadSettingsFromStorage()
{
ShowTypeScriptPreviewWindow = WESettings.GetBoolean(WESettings.Keys.ShowTypeScriptPreviewWindow);
}
[LocDisplayName("Show preview window")]
[Description("Show the preview window when editing a TypeScript file.")]
[Category("TypeScript")]
public bool ShowTypeScriptPreviewWindow { get; set; }
}
}