We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59047a5 commit 692e958Copy full SHA for 692e958
lib/vim_ahk.ahk
@@ -257,9 +257,9 @@ class VimAhk{
257
258
IsVimGroup(){
259
if(this.Conf["VimAppList"]["val"] == "Allow List"){
260
- Return (WinActive("ahk_group " . this.GroupName) != 0)
+ Return WinActive("ahk_group " . this.GroupName)
261
}else if(this.Conf["VimAppList"]["val"] == "Deny List"){
262
- Return (WinActive("ahk_group " . this.GroupName) == 0)
+ Return !WinActive("ahk_group " . this.GroupName)
263
}
264
Return True
265
0 commit comments