File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 43
43
<KeyBinding Key =" F5" Command =" {Binding ReloadPluginDataCommand}" />
44
44
<KeyBinding
45
45
Key =" Tab"
46
- Command =" {Binding InsertSuggestion }" />
46
+ Command =" {Binding AutocompleteQueryCommand }" />
47
47
<KeyBinding
48
48
Key =" Tab"
49
- Command =" {Binding InsertSuggestion }"
49
+ Command =" {Binding AutocompleteQueryCommand }"
50
50
Modifiers =" Shift" />
51
51
<KeyBinding
52
52
Key =" I"
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ private void InitializeKeyCommands()
228
228
}
229
229
} ) ;
230
230
231
- InsertSuggestion = new RelayCommand ( _ =>
231
+ AutocompleteQueryCommand = new RelayCommand ( _ =>
232
232
{
233
233
var result = SelectedResults . SelectedItem ? . Result ;
234
234
if ( result != null ) // SelectedItem returns null if selection is empty.
@@ -408,7 +408,7 @@ private ResultsViewModel SelectedResults
408
408
public ICommand OpenSettingCommand { get ; set ; }
409
409
public ICommand ReloadPluginDataCommand { get ; set ; }
410
410
public ICommand ClearQueryCommand { get ; private set ; }
411
- public ICommand InsertSuggestion { get ; set ; }
411
+ public ICommand AutocompleteQueryCommand { get ; set ; }
412
412
413
413
public string OpenResultCommandModifiers { get ; private set ; }
414
414
You can’t perform that action at this time.
0 commit comments