Skip to content

Commit 8846bfe

Browse files
committed
enhance: temp ignore Ctrl+Shift+P
Signed-off-by: leo <longshuang@msn.cn>
1 parent 9193e17 commit 8846bfe

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Views/Launcher.axaml.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,12 @@ protected override async void OnKeyDown(KeyEventArgs e)
174174

175175
if (e.KeyModifiers.HasFlag(OperatingSystem.IsMacOS() ? KeyModifiers.Meta : KeyModifiers.Control))
176176
{
177+
if (e.Key == Key.P && e.KeyModifiers.HasFlag(KeyModifiers.Shift))
178+
{
179+
// TODO: Command Palette
180+
return;
181+
}
182+
177183
if (e.Key == Key.P)
178184
{
179185
vm.OpenTabSwitcher();

0 commit comments

Comments
 (0)