@@ -50,6 +50,7 @@ public void Save()
5050 public string SelectPrevPageHotkey { get ; set ; } = $ "PageDown";
5151 public string OpenContextMenuHotkey { get ; set ; } = $ "Ctrl+O";
5252 public string SettingWindowHotkey { get ; set ; } = $ "Ctrl+I";
53+ public string OpenHistoryHotkey { get ; set ; } = $ "Ctrl+H";
5354 public string CycleHistoryUpHotkey { get ; set ; } = $ "{ KeyConstant . Alt } + Up";
5455 public string CycleHistoryDownHotkey { get ; set ; } = $ "{ KeyConstant . Alt } + Down";
5556
@@ -426,6 +427,8 @@ public List<RegisteredHotkeyData> RegisteredHotkeys
426427 list . Add ( new ( SelectPrevItemHotkey2 , "SelectPrevItemHotkey" , ( ) => SelectPrevItemHotkey2 = "" ) ) ;
427428 if ( ! string . IsNullOrEmpty ( SettingWindowHotkey ) )
428429 list . Add ( new ( SettingWindowHotkey , "SettingWindowHotkey" , ( ) => SettingWindowHotkey = "" ) ) ;
430+ if ( ! string . IsNullOrEmpty ( OpenHistoryHotkey ) )
431+ list . Add ( new ( OpenHistoryHotkey , "OpenHistoryHotkey" , ( ) => OpenHistoryHotkey = "" ) ) ;
429432 if ( ! string . IsNullOrEmpty ( OpenContextMenuHotkey ) )
430433 list . Add ( new ( OpenContextMenuHotkey , "OpenContextMenuHotkey" , ( ) => OpenContextMenuHotkey = "" ) ) ;
431434 if ( ! string . IsNullOrEmpty ( SelectNextPageHotkey ) )
@@ -461,7 +464,6 @@ private List<RegisteredHotkeyData> FixedHotkeys()
461464 new ( "Alt+Home" , "HotkeySelectFirstResult" ) ,
462465 new ( "Alt+End" , "HotkeySelectLastResult" ) ,
463466 new ( "Ctrl+R" , "HotkeyRequery" ) ,
464- new ( "Ctrl+H" , "ToggleHistoryHotkey" ) ,
465467 new ( "Ctrl+OemCloseBrackets" , "QuickWidthHotkey" ) ,
466468 new ( "Ctrl+OemOpenBrackets" , "QuickWidthHotkey" ) ,
467469 new ( "Ctrl+OemPlus" , "QuickHeightHotkey" ) ,
0 commit comments