We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Ctrl + R
1 parent 0b05e95 commit fa783a9Copy full SHA for fa783a9
Flow.Launcher/MainWindow.xaml
@@ -86,6 +86,10 @@
86
Key="O"
87
Command="{Binding LoadContextMenuCommand}"
88
Modifiers="Ctrl" />
89
+ <KeyBinding
90
+ Key="R"
91
+ Command="{Binding ReQueryCommand}"
92
+ Modifiers="Ctrl" />
93
<KeyBinding
94
Key="H"
95
Command="{Binding LoadHistoryCommand}"
Flow.Launcher/ViewModel/MainViewModel.cs
@@ -1,4 +1,4 @@
1
-using System;
+using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Threading;
@@ -205,6 +205,15 @@ private void LoadHistory()
205
}
206
207
208
+ [RelayCommand]
209
+ private void ReQuery()
210
+ {
211
+ if (SelectedIsFromQueryResults())
212
213
+ QueryResults(reQuery: true);
214
+ }
215
216
+
217
[RelayCommand]
218
private void LoadContextMenu()
219
{
0 commit comments