Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\build\\build.js",
"program": "${workspaceFolder}/build/build.js",
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is required for this to work on linux or osx, it should still function on windows as node.js fs operations support unix style paths on windows.

"outFiles": [
"${workspaceFolder}/**/*.js"
]
Expand Down
4 changes: 2 additions & 2 deletions Syntaxes/Lua.plist
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@
</dict>
<dict>
<key>begin</key>
<string>(?&lt;=\.cdef)\s*(\[(=*)\[)</string>
<string>(?&lt;=\.cdef)\s*(\(?\[(=*)\[)</string>
<key>beginCaptures</key>
<dict>
<key>0</key>
Expand All @@ -468,7 +468,7 @@
<key>contentName</key>
<string>meta.embedded.lua</string>
<key>end</key>
<string>(\]\2\])[ \t]*</string>
<string>(\]\2\]\)?)[ \t]*</string>
<key>endCaptures</key>
<dict>
<key>0</key>
Expand Down
4 changes: 2 additions & 2 deletions lua.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@
"name": "string.quoted.double.lua"
},
{
"begin": "(?<=\\.cdef)\\s*(\\[(=*)\\[)",
"begin": "(?<=\\.cdef)\\s*(\\(?\\[(=*)\\[)",
"beginCaptures": {
"0": {
"name": "string.quoted.other.multiline.lua"
Expand All @@ -302,7 +302,7 @@
}
},
"contentName": "meta.embedded.lua",
"end": "(\\]\\2\\])[ \\t]*",
"end": "(\\]\\2\\]\\)?)[ \\t]*",
"endCaptures": {
"0": {
"name": "string.quoted.other.multiline.lua"
Expand Down