Skip to content

Commit 14310d2

Browse files
committed
Add code comments
1 parent c9db3ec commit 14310d2

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Flow.Launcher/Helper/HotKeyMapper.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616

1717
namespace Flow.Launcher.Helper;
1818

19+
/// <summary>
20+
/// Set Flow Launcher global hotkeys & window hotkeys
21+
/// </summary>
1922
internal static class HotKeyMapper
2023
{
2124
private static readonly string ClassName = nameof(HotKeyMapper);
@@ -130,6 +133,9 @@ private static void RemoveWithChefKeys(string hotkeyStr)
130133
ChefKeysManager.Stop();
131134
}
132135

136+
/// <summary>
137+
/// Custom Query Hotkeys (Global)
138+
/// </summary>
133139
internal static void LoadCustomPluginHotkey()
134140
{
135141
if (_settings.CustomPluginHotkeys == null)
@@ -153,6 +159,9 @@ internal static void SetCustomQueryHotkey(CustomPluginHotkey hotkey)
153159
});
154160
}
155161

162+
/// <summary>
163+
/// Global Plugin Hotkeys (Global)
164+
/// </summary>
156165
internal static void LoadGlobalPluginHotkey()
157166
{
158167
var pluginHotkeyInfos = PluginManager.GetPluginHotkeyInfo();
@@ -190,6 +199,9 @@ internal static void SetGlobalPluginHotkey(GlobalPluginHotkey globalHotkey, Plug
190199
});
191200
}
192201

202+
/// <summary>
203+
/// Plugin Window Hotkeys (Window)
204+
/// </summary>
193205
internal static void LoadWindowPluginHotkey()
194206
{
195207
var windowPluginHotkeys = PluginManager.GetWindowPluginHotkeys();

0 commit comments

Comments
 (0)