File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 44
44
<KeyBinding Key =" Tab" Command =" {Binding ReplaceQueryWithResult}" />
45
45
<KeyBinding
46
46
Key =" Tab"
47
- Command =" {Binding SelectPrevItemCommand }"
47
+ Command =" {Binding ReplaceQueryWithResult }"
48
48
Modifiers =" Shift" />
49
49
<KeyBinding
50
50
Key =" I"
Original file line number Diff line number Diff line change @@ -240,7 +240,14 @@ private void InitializeKeyCommands()
240
240
var result = results . SelectedItem ? . Result ;
241
241
if ( result != null ) // SelectedItem returns null if selection is empty.
242
242
{
243
- ChangeQueryText ( result . InsertText ) ;
243
+ string _newText = String . Empty ;
244
+ _newText = result . Title ;
245
+ var SpecialKeyState = GlobalHotkey . Instance . CheckModifiers ( ) ;
246
+ if ( SpecialKeyState . ShiftPressed )
247
+ {
248
+ _newText = result . SubTitle ;
249
+ }
250
+ ChangeQueryText ( _newText ) ;
244
251
}
245
252
} ) ;
246
253
You can’t perform that action at this time.
0 commit comments