@@ -271,7 +271,7 @@ public static void RemoveKeyHandler(string[] key)
271
271
/// </summary>
272
272
/// <returns></returns>
273
273
[ SuppressMessage ( "Microsoft.Design" , "CA1026:DefaultParametersShouldNotBeUsed" ) ]
274
- public static IEnumerable < PowerShell . KeyHandler > GetKeyHandlers ( bool includeBound = true , bool includeUnbound = false )
274
+ public static IEnumerable < Microsoft . PowerShell . KeyHandler > GetKeyHandlers ( bool includeBound = true , bool includeUnbound = false )
275
275
{
276
276
var boundFunctions = new HashSet < string > ( StringComparer . OrdinalIgnoreCase ) ;
277
277
@@ -285,7 +285,7 @@ public static void RemoveKeyHandler(string[] key)
285
285
boundFunctions . Add ( entry . Value . BriefDescription ) ;
286
286
if ( includeBound )
287
287
{
288
- yield return new PowerShell . KeyHandler
288
+ yield return new Microsoft . PowerShell . KeyHandler
289
289
{
290
290
Key = entry . Key . ToGestureString ( ) ,
291
291
Function = entry . Value . BriefDescription ,
@@ -301,7 +301,7 @@ public static void RemoveKeyHandler(string[] key)
301
301
boundFunctions . Add ( secondEntry . Value . BriefDescription ) ;
302
302
if ( includeBound )
303
303
{
304
- yield return new PowerShell . KeyHandler
304
+ yield return new Microsoft . PowerShell . KeyHandler
305
305
{
306
306
Key = entry . Key . ToGestureString ( ) + "," + secondEntry . Key . ToGestureString ( ) ,
307
307
Function = secondEntry . Value . BriefDescription ,
@@ -329,7 +329,7 @@ public static void RemoveKeyHandler(string[] key)
329
329
330
330
if ( ! boundFunctions . Contains ( method . Name ) )
331
331
{
332
- yield return new PowerShell . KeyHandler
332
+ yield return new Microsoft . PowerShell . KeyHandler
333
333
{
334
334
Key = "Unbound" ,
335
335
Function = method . Name ,
0 commit comments