Skip to content

Commit

Permalink
fix: fix modules loader
Browse files Browse the repository at this point in the history
  • Loading branch information
snomiao committed Nov 29, 2021
1 parent 3fab273 commit 4355668
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CapsLockX.ahk
Expand Up @@ -147,8 +147,8 @@ Return
; 匹配模块名
模块文件 := A_LoopField
匹配结果 := false
匹配结果 ||= RegExMatch(A_LoopField, "O)((?:.*[-])*)(.*?)(?:\.user)?\.ahk", Match)
匹配结果 ||= RegExMatch(A_LoopField, "O)((?:.*[-])*)(.*?)(?:\.用户)?\.ahk", Match)
匹配结果 := 匹配结果 || RegExMatch(A_LoopField, "O)((?:.*[-])*)(.*?)(?:\.user)?\.ahk", Match)
匹配结果 := 匹配结果 || RegExMatch(A_LoopField, "O)((?:.*[-])*)(.*?)(?:\.用户)?\.ahk", Match)
if (!匹配结果) {
Continue
}
Expand Down

0 comments on commit 4355668

Please sign in to comment.