@@ -50,6 +50,7 @@ public void Save()
50
50
public string SelectPrevPageHotkey { get ; set ; } = $ "PageDown";
51
51
public string OpenContextMenuHotkey { get ; set ; } = $ "Ctrl+O";
52
52
public string SettingWindowHotkey { get ; set ; } = $ "Ctrl+I";
53
+ public string OpenHistoryHotkey { get ; set ; } = $ "Ctrl+H";
53
54
public string CycleHistoryUpHotkey { get ; set ; } = $ "{ KeyConstant . Alt } + Up";
54
55
public string CycleHistoryDownHotkey { get ; set ; } = $ "{ KeyConstant . Alt } + Down";
55
56
@@ -426,6 +427,8 @@ public List<RegisteredHotkeyData> RegisteredHotkeys
426
427
list . Add ( new ( SelectPrevItemHotkey2 , "SelectPrevItemHotkey" , ( ) => SelectPrevItemHotkey2 = "" ) ) ;
427
428
if ( ! string . IsNullOrEmpty ( SettingWindowHotkey ) )
428
429
list . Add ( new ( SettingWindowHotkey , "SettingWindowHotkey" , ( ) => SettingWindowHotkey = "" ) ) ;
430
+ if ( ! string . IsNullOrEmpty ( OpenHistoryHotkey ) )
431
+ list . Add ( new ( OpenHistoryHotkey , "OpenHistoryHotkey" , ( ) => OpenHistoryHotkey = "" ) ) ;
429
432
if ( ! string . IsNullOrEmpty ( OpenContextMenuHotkey ) )
430
433
list . Add ( new ( OpenContextMenuHotkey , "OpenContextMenuHotkey" , ( ) => OpenContextMenuHotkey = "" ) ) ;
431
434
if ( ! string . IsNullOrEmpty ( SelectNextPageHotkey ) )
@@ -461,7 +464,6 @@ private List<RegisteredHotkeyData> FixedHotkeys()
461
464
new ( "Alt+Home" , "HotkeySelectFirstResult" ) ,
462
465
new ( "Alt+End" , "HotkeySelectLastResult" ) ,
463
466
new ( "Ctrl+R" , "HotkeyRequery" ) ,
464
- new ( "Ctrl+H" , "ToggleHistoryHotkey" ) ,
465
467
new ( "Ctrl+OemCloseBrackets" , "QuickWidthHotkey" ) ,
466
468
new ( "Ctrl+OemOpenBrackets" , "QuickWidthHotkey" ) ,
467
469
new ( "Ctrl+OemPlus" , "QuickHeightHotkey" ) ,
0 commit comments