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 49703c5 commit 656de77Copy full SHA for 656de77
CHANGELOG.md
@@ -1,3 +1,6 @@
1
+## 1.6.3
2
+- Hotfix for potential bug in encryption detection.
3
+
4
## 1.6.2
5
- Hotfix for HoverDocs
6
extension.js
@@ -138,7 +138,7 @@ function activate(context) {
138
139
function LookForErrors(source) {
140
let outp = [];
141
- let reg = new RegExp(`(Encode|Decode)(?:\\s)?=(?:\\s)?function\\(.+\\).*(${Encryption.join("|")}).*end function`, "s");
+ let reg = new RegExp(`$(Encode|Decode)(?:\\s)?=(?:\\s)?function\\(.+\\).*(${Encryption.join("|")}).*end function`, "s");
142
let m = source.match(reg);
143
if (m) {
144
let match = m;
0 commit comments