Skip to content

Commit 6828f2b

Browse files
committed
fix(capslockx): dont show modulefile msgbox on laun
dont show modulefile msgbox on launch
1 parent b2123a8 commit 6828f2b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

CapsLockX.ahk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Return
146146
; MsgBox, ModuleFile %ModuleFile%
147147
}
148148
}
149-
msgbox % "ModuleFiles" ModuleFiles
149+
; Msgbox % "ModuleFiles" ModuleFiles
150150
loop, Files, %CLX_ModuleDir%\*.ahk
151151
{
152152
; Do not Recurse into subfolders. 子文件夹由模块自己去include去加载
@@ -166,11 +166,11 @@ Return
166166
匹配结果 := 匹配结果 || RegExMatch(A_LoopField, "O)(?:.*/)?((?:.*[-])*)(.*?)(?:\.user)?\.ahk", Match)
167167
匹配结果 := 匹配结果 || RegExMatch(A_LoopField, "O)(?:.*/)?((?:.*[-])*)(.*?)(?:\.用户)?\.ahk", Match)
168168
if (!匹配结果) {
169-
; msgbox % "模块文件" 模块文件
169+
; Msgbox % "模块文件" 模块文件
170170
Continue
171171
}
172172
模块文件名称 := Match[1] Match[2]
173-
; msgbox % "模块文件名称" 模块文件名称
173+
; Msgbox % "模块文件名称" 模块文件名称
174174
模块名称 := Match[2]
175175
模块帮助内容 := ""
176176
模块帮助文件 := ""

0 commit comments

Comments
 (0)