Skip to content

Commit 2788ce6

Browse files
committed
Use full namespace
1 parent 60dcfa6 commit 2788ce6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PSReadLine/Options.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ public static void RemoveKeyHandler(string[] key)
271271
/// </summary>
272272
/// <returns></returns>
273273
[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)
275275
{
276276
var boundFunctions = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
277277

@@ -285,7 +285,7 @@ public static void RemoveKeyHandler(string[] key)
285285
boundFunctions.Add(entry.Value.BriefDescription);
286286
if (includeBound)
287287
{
288-
yield return new PowerShell.KeyHandler
288+
yield return new Microsoft.PowerShell.KeyHandler
289289
{
290290
Key = entry.Key.ToGestureString(),
291291
Function = entry.Value.BriefDescription,
@@ -301,7 +301,7 @@ public static void RemoveKeyHandler(string[] key)
301301
boundFunctions.Add(secondEntry.Value.BriefDescription);
302302
if (includeBound)
303303
{
304-
yield return new PowerShell.KeyHandler
304+
yield return new Microsoft.PowerShell.KeyHandler
305305
{
306306
Key = entry.Key.ToGestureString() + "," + secondEntry.Key.ToGestureString(),
307307
Function = secondEntry.Value.BriefDescription,
@@ -329,7 +329,7 @@ public static void RemoveKeyHandler(string[] key)
329329

330330
if (!boundFunctions.Contains(method.Name))
331331
{
332-
yield return new PowerShell.KeyHandler
332+
yield return new Microsoft.PowerShell.KeyHandler
333333
{
334334
Key = "Unbound",
335335
Function = method.Name,

0 commit comments

Comments
 (0)