diff --git a/src/InteractiveWindow/VisualStudio/InteractiveWindow.vsct b/src/InteractiveWindow/VisualStudio/InteractiveWindow.vsct index 8b3ab31681ed8923850e6a6edc5e36f44779538f..6a34ebe115a03a307816866a72bdc540387d2681 100644 --- a/src/InteractiveWindow/VisualStudio/InteractiveWindow.vsct +++ b/src/InteractiveWindow/VisualStudio/InteractiveWindow.vsct @@ -110,6 +110,8 @@ IconIsMoniker Reset + .InteractiveConsole.Reset + .InteractiveConsole.Reset @@ -119,8 +121,8 @@ DefaultInvisible Execute or Paste Input - ExecuteOrPasteInput - ExecuteOrPasteInput + .InteractiveConsole.ExecuteOrPasteInput + .InteractiveConsole.ExecuteOrPasteInput @@ -130,6 +132,8 @@ DefaultInvisible History Previous + .InteractiveConsole.HistoryPrevious + .InteractiveConsole.HistoryPrevious @@ -139,6 +143,8 @@ DefaultInvisible History Next + .InteractiveConsole.HistoryNext + .InteractiveConsole.HistoryNext @@ -148,6 +154,8 @@ DefaultInvisible Search History Next + .InteractiveConsole.SearchHistoryNext + .InteractiveConsole.SearchHistoryNext @@ -157,6 +165,8 @@ DefaultInvisible Search History Previous + .InteractiveConsole.SearchHistoryPrevious + .InteractiveConsole.SearchHistoryPrevious @@ -167,6 +177,8 @@ IconIsMoniker Clear Screen + .InteractiveConsole.ClearScreen + .InteractiveConsole.ClearScreen @@ -176,6 +188,8 @@ DefaultInvisible Break Line + .InteractiveConsole.BreakLine + .InteractiveConsole.BreakLine @@ -188,6 +202,8 @@ cmdidAbortExecution Cancel Execution + .InteractiveConsole.CancelExecution + .InteractiveConsole.CancelExecution --> @@ -198,7 +214,9 @@ DynamicVisibility DefaultInvisible - Execute In Interactive + Execute in Interactive + .InteractiveConsole.ExecuteInInteractive + .InteractiveConsole.ExecuteInInteractive @@ -207,7 +225,9 @@ DynamicVisibility DefaultInvisible - Copy To Interactive + Copy to Interactive + .InteractiveConsole.CopyToInteractive + .InteractiveConsole.CopyToInteractive diff --git a/src/InteractiveWindow/VisualStudio/InteractiveWindowPackage.cs b/src/InteractiveWindow/VisualStudio/InteractiveWindowPackage.cs index 5b3cff2f0663d0757e602c61cc6260f43fe658c2..1c715709b020a739a7ae8ec9c3f3f03b6f9c9b44 100644 --- a/src/InteractiveWindow/VisualStudio/InteractiveWindowPackage.cs +++ b/src/InteractiveWindow/VisualStudio/InteractiveWindowPackage.cs @@ -23,7 +23,7 @@ namespace Microsoft.VisualStudio.InteractiveWindow.Shell [PackageRegistration(UseManagedResourcesOnly = true)] [Description("Visual Studio Interactive Window")] [ProvideKeyBindingTable(Guids.InteractiveToolWindowIdString, 200)] // Resource ID: "Interactive Window" - [ProvideMenuResource("Menus.ctmenu", 1)] + [ProvideMenuResource("Menus.ctmenu", 2)] [Guid(Guids.InteractiveWindowPackageIdString)] [ProvideBindingPath] // make sure our DLLs are loadable from other packages internal sealed class InteractiveWindowPackage : Package