Search by regex, modal Enter fixes

This commit is contained in:
2023-07-31 14:07:52 +02:00
parent a537277546
commit bc31b71130
38 changed files with 301 additions and 53 deletions

View File

@@ -1,4 +1,5 @@
using FileTime.App.Core.ViewModels;
using Avalonia.Input;
using FileTime.App.Core.ViewModels;
using FileTime.App.FuzzyPanel;
namespace FileTime.App.CommandPalette.ViewModels;
@@ -7,4 +8,5 @@ public interface ICommandPaletteViewModel : IFuzzyPanelViewModel<ICommandPalette
{
IObservable<bool> ShowWindow { get; }
void Close();
Task<bool> HandleKeyUp(KeyEventArgs keyEventArgs);
}