File tree 3 files changed +25
-0
lines changed
3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 23
23
" keygrabber" ,
24
24
" ldoc" ,
25
25
" leafo" ,
26
+ " lldebugger" ,
26
27
" luacheck" ,
27
28
" luacheckrc" ,
28
29
" luadoc" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "name" : " Busted" ,
9
+ "type" : " lua-local" ,
10
+ "request" : " launch" ,
11
+ "program" : {
12
+ "command" : " luarocks"
13
+ },
14
+ "args" : [" test" ]
15
+ // "ignorePatterns": "^/usr"
16
+ }
17
+ ]
18
+ }
Original file line number Diff line number Diff line change
1
+ -- Enable lua-local-debugger
2
+ -- https://github.com/tomblind/local-lua-debugger-vscode
3
+ if os.getenv " LOCAL_LUA_DEBUGGER_VSCODE" == " 1" then
4
+ require (" lldebugger" ).start ()
5
+ end
6
+
1
7
-- Fake awesome modules
2
8
package.loaded [" gears.table" ] = {
3
9
hasitem = function (t , item )
You can’t perform that action at this time.
0 commit comments