KeyChords.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 using Microsoft.CmdPal.Core.Common.Helpers; 6 using Microsoft.CommandPalette.Extensions; 7 8 namespace Microsoft.CmdPal.Ext.Apps; 9 10 internal static class KeyChords 11 { 12 internal static KeyChord OpenFileLocation { get; } = WellKnownKeyChords.OpenFileLocation; 13 14 internal static KeyChord CopyFilePath { get; } = WellKnownKeyChords.CopyFilePath; 15 16 internal static KeyChord OpenInConsole { get; } = WellKnownKeyChords.OpenInConsole; 17 18 internal static KeyChord RunAsAdministrator { get; } = WellKnownKeyChords.RunAsAdministrator; 19 20 internal static KeyChord RunAsDifferentUser { get; } = WellKnownKeyChords.RunAsDifferentUser; 21 22 internal static KeyChord TogglePin { get; } = WellKnownKeyChords.TogglePin; 23 }