Change Default Autocomplete hotkey

This commit is contained in:
DB p 2024-04-15 22:17:15 +09:00
parent e53e1a0222
commit d15cc1e6e6
2 changed files with 2 additions and 2 deletions

View file

@ -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";

View file

@ -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();
});