mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change Default Autocomplete hotkey
This commit is contained in:
parent
e53e1a0222
commit
d15cc1e6e6
2 changed files with 2 additions and 2 deletions
|
|
@ -20,7 +20,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings
|
|||
public bool ShowOpenResultHotkey { get; set; } = true;
|
||||
public double WindowSize { get; set; } = 580;
|
||||
public string PreviewHotkey { get; set; } = $"F1";
|
||||
public string AutoCompleteHotkey { get; set; } = $"{KeyConstant.Ctrl} + P";
|
||||
public string AutoCompleteHotkey { get; set; } = $"{KeyConstant.Ctrl} + Tab";
|
||||
public string SelectNextItemHotkey { get; set; } = $"Tab";
|
||||
public string SelectPrevItemHotkey { get; set; } = $"Shift + Tab";
|
||||
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ namespace Flow.Launcher.ViewModel
|
|||
});
|
||||
|
||||
AutoCompleteHotkeyViewModel =
|
||||
new HotkeyControlViewModel(Settings.AutoCompleteHotkey, "Ctrl+P", false, hotkey =>
|
||||
new HotkeyControlViewModel(Settings.AutoCompleteHotkey, "Ctrl+Tab", false, hotkey =>
|
||||
{
|
||||
Settings.AutoCompleteHotkey = hotkey.ToString();
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue