mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
24 lines
893 B
C#
24 lines
893 B
C#
|
|
// Copyright (c) Microsoft Corporation
|
|||
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|||
|
|
// See the LICENSE file in the project root for more information.
|
|||
|
|
|
|||
|
|
using Microsoft.CmdPal.Common.Helpers;
|
|||
|
|
using Microsoft.CommandPalette.Extensions;
|
|||
|
|
|
|||
|
|
namespace Microsoft.CmdPal.Ext.Apps;
|
|||
|
|
|
|||
|
|
internal static class KeyChords
|
|||
|
|
{
|
|||
|
|
internal static KeyChord OpenFileLocation { get; } = WellKnownKeyChords.OpenFileLocation;
|
|||
|
|
|
|||
|
|
internal static KeyChord CopyFilePath { get; } = WellKnownKeyChords.CopyFilePath;
|
|||
|
|
|
|||
|
|
internal static KeyChord OpenInConsole { get; } = WellKnownKeyChords.OpenInConsole;
|
|||
|
|
|
|||
|
|
internal static KeyChord RunAsAdministrator { get; } = WellKnownKeyChords.RunAsAdministrator;
|
|||
|
|
|
|||
|
|
internal static KeyChord RunAsDifferentUser { get; } = WellKnownKeyChords.RunAsDifferentUser;
|
|||
|
|
|
|||
|
|
internal static KeyChord TogglePin { get; } = WellKnownKeyChords.TogglePin;
|
|||
|
|
}
|