File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -92,10 +92,10 @@ This is useful if you want to see the string that the debugging target leaves on
9292Basically ` Vscode-debuggee.lua ` drops the speed of running Lua programs because it implements the breakpoint mechanism using ` debug.sethook ` .
9393This performance degradation can be overcome by applying a simple patch to the Lua VM.
9494
95- A patch file for lua 5.1.5 is available [ here] ( https://github.com/devcat-studio/lua-5.1.5-op_halt/blob/master/op_halt.patch ) .
96-
97- The result of applying this patch to lua 5.1.5 can be downloaded [ here] ( https://github.com/devcat-studio/lua-5.1.5-op_halt ) .
95+ Download:
96+ * lua 5.1.5 : [ Patch] ( https://github.com/devcat-studio/lua-5.1.5-op_halt/blob/master/op_halt.patch ) , [ Code] ( https://github.com/devcat-studio/lua-5.1.5-op_halt )
9897
98+ * lua 5.3.4 : [ Patch] ( https://github.com/devcat-studio/lua-5.3.4-op_halt/blob/master/op_halt.patch ) , [ Code] ( https://github.com/devcat-studio/lua-5.3.4-op_halt )
9999
100100
101101# Acknowledgments
@@ -127,4 +127,4 @@ Stops running the Lua program and start debugging from the current location.
127127
128128## debuggee.print(category, ...)
129129Prints text on vscode debug console.
130- ` category ` colorize print text, you can choose ` log ` , ` warning ` , or ` error ` .
130+ ` category ` colorize print text, you can choose ` log ` , ` warning ` , or ` error ` .
You can’t perform that action at this time.
0 commit comments