12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using com.insanitydesign.MarkdownViewerPlusPlus;
- using Kbg.NppPluginNET.PluginInfrastructure;
- namespace Kbg.NppPluginNET
- {
-
-
-
- class Main
- {
-
-
-
- public const string PluginName = "MarkdownViewer++";
-
-
-
- private static MarkdownViewer MarkdownViewer = new MarkdownViewer();
-
-
-
-
-
-
-
-
-
-
-
- public static void OnNotification(ScNotification notification)
- {
- MarkdownViewer.OnNotification(notification);
- }
-
-
-
- internal static void CommandMenuInit()
- {
- MarkdownViewer.CommandMenuInit();
- }
-
-
-
- internal static void SetToolBarIcon()
- {
- MarkdownViewer.SetToolBarIcon();
- }
-
-
-
- internal static void PluginCleanUp()
- {
- MarkdownViewer.PluginCleanUp();
- }
- }
- }
|