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 8c0c720 commit 6238746Copy full SHA for 6238746
package.json
@@ -3,7 +3,7 @@
3
"displayName": "GLua Enhanced (Garry's Mod/Gmod Lua)",
4
"description": "GLua language support for Visual Studio Code",
5
"license": "GNU General Public License v3.0",
6
- "version": "2.3.2",
+ "version": "2.3.3",
7
"engines": {
8
"vscode": "^0.10.1"
9
},
src/gluaparse.js
@@ -553,7 +553,7 @@ class GLuaParser {
553
}
554
555
static isTempGitHubDownload(uri) {
556
- if (uri.scheme !== "file") return false;
+ if (uri.scheme === "file") return false;
557
let tmpPath = TempFile.getTempPath("Facepunch/garrysmod");
558
let relPath = path.relative(uri.fsPath, tmpPath);
559
return relPath != tmpPath;
0 commit comments