[svn] r7558: vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleViewFilter.cs

VladD2 svnadmin at nemerle.org
Wed Mar 28 21:37:32 CEST 2007


Log:
Add support for remove permanent highlight on ESC.

Author: VladD2
Date: Wed Mar 28 21:37:30 2007
New Revision: 7558

Modified:
   vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleViewFilter.cs

Modified: vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleViewFilter.cs
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleViewFilter.cs	(original)
+++ vs-plugin/trunk/Nemerle.VsIntegration/LanguageService/NemerleViewFilter.cs	Wed Mar 28 21:37:30 2007
@@ -80,11 +80,11 @@
 					NemerleSource source = Source as NemerleSource;
 					if (source != null)
 						source.ProjectInfo.ProjectNode.Package.OnAstToolWindowShow(null, null);
-
 					break;
                 case 0x3107: // Highlight symbol
 					HighlightSymbol();
 					break;
+				case 103: // ESC
                 case 0x3108: // Remove last highlighting
 					RemoveLastHighlighting();
 					break;
@@ -93,6 +93,7 @@
 			if (txt != null)
 			    System.Diagnostics.Trace.Assert(false, "Implement the menu!\r\nID: " + txt);
 			
+
 			return base.ExecCommand(ref guidCmdGroup, nCmdId, nCmdexecopt, pvaIn, pvaOut);
 		}
 



More information about the svn mailing list