diff --git a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs index 04cdb17d9..7d51701ed 100644 --- a/Flow.Launcher.Infrastructure/UserSettings/Settings.cs +++ b/Flow.Launcher.Infrastructure/UserSettings/Settings.cs @@ -23,6 +23,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings public string AutoCompleteHotkey { get; set; } = $"{KeyConstant.Ctrl} + Tab"; public string SelectNextItemHotkey { get; set; } = $"Tab"; public string SelectPrevItemHotkey { get; set; } = $"Shift + Tab"; + public string OpenContextMenuHotkey { get; set; } = $"Ctrl+O"; public string SettingWindowHotkey { get; set; } = $"Ctrl+I"; public string Language diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index 1b72b688b..1fff600c2 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -172,9 +172,9 @@ Hotkey Hotkeys - Flow Launcher Hotkey + Open Flow Launcher Enter shortcut to show/hide Flow Launcher. - Preview Hotkey + Toggle Preview Enter shortcut to show/hide preview in search window. Basic Hotkeys List of shortcuts used by basic @@ -182,11 +182,12 @@ Select a modifier key to open selected result via keyboard. Show Hotkey Show result selection hotkey with results. - Auto Complete Hotkey + Auto Complete Runs autocomplete for the selected items. - Next Item Hotkey - Prev Item Hotkey - Setting Window Hotkey + Select Next Item + Select Prev Item + Open Context Menu + Open Setting Window Custom Query Hotkeys Custom Query Shortcuts Built-in Shortcuts diff --git a/Flow.Launcher/MainWindow.xaml b/Flow.Launcher/MainWindow.xaml index 4146ff13c..bec488d29 100644 --- a/Flow.Launcher/MainWindow.xaml +++ b/Flow.Launcher/MainWindow.xaml @@ -74,10 +74,6 @@ Key="End" Command="{Binding SelectLastResultCommand}" Modifiers="Alt" /> - + diff --git a/Flow.Launcher/SettingWindow.xaml b/Flow.Launcher/SettingWindow.xaml index fc8851934..2e7a6c962 100644 --- a/Flow.Launcher/SettingWindow.xaml +++ b/Flow.Launcher/SettingWindow.xaml @@ -2767,6 +2767,13 @@ ValidateKeyGesture="False" /> + + + + VerifyOrSetDefaultHotkey(Settings.AutoCompleteHotkey, "Ctrl+Tab"); public string SelectNextItemHotkey => VerifyOrSetDefaultHotkey(Settings.SelectNextItemHotkey, "Tab"); public string SelectPrevItemHotkey => VerifyOrSetDefaultHotkey(Settings.SelectPrevItemHotkey, "Shift+Tab"); + public string OpenContextMenuHotkey => VerifyOrSetDefaultHotkey(Settings.OpenContextMenuHotkey, "Ctrl+O"); public string SettingWindowHotkey => VerifyOrSetDefaultHotkey(Settings.SettingWindowHotkey, "Ctrl+I");