Skip to content

Commit 7a973c1

Browse files
committed
defold associations
1 parent bbb6ccc commit 7a973c1

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

meta/3rd/Defold/config.lua

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,66 @@ configs = {
66
action = 'set',
77
value = 'Lua 5.1',
88
},
9+
{
10+
key = 'Lua.workspace.library',
11+
action = 'set',
12+
value = {".internal"},
13+
},
14+
{
15+
key = 'Lua.workspace.ignoreDir',
16+
action = 'set',
17+
value = {".internal"},
18+
},
19+
{
20+
key = 'Lua.diagnostics.globals',
21+
action = 'set',
22+
value = {
23+
"on_input",
24+
"on_message",
25+
"init",
26+
"update",
27+
"final"
28+
},
29+
},
30+
{
31+
key = 'files.associations',
32+
action = 'set',
33+
value = {
34+
["*.project"] = "ini",
35+
["*.script"] = "lua",
36+
["*.gui_script"] = "lua",
37+
["*.render_script"] = "lua",
38+
["*.editor_script"] = "lua",
39+
["*.fp"] = "glsl",
40+
["*.vp"] = "glsl",
41+
["*.go"] = "textproto",
42+
["*.animationset"] = "textproto",
43+
["*.atlas"] = "textproto",
44+
["*.buffer"] = "json",
45+
["*.camera"] = "textproto",
46+
["*.collection"] = "textproto",
47+
["*.collectionfactory"] = "textproto",
48+
["*.collectionproxy"] = "textproto",
49+
["*.collisionobject"] = "textproto",
50+
["*.display_profiles"] = "textproto",
51+
["*.factory"] = "textproto",
52+
["*.gamepads"] = "textproto",
53+
["*.gui"] = "textproto",
54+
["*.input_binding"] = "textproto",
55+
["*.label"] = "textproto",
56+
["*.material"] = "textproto",
57+
["*.mesh"] = "textproto",
58+
["*.model"] = "textproto",
59+
["*.particlefx"] = "textproto",
60+
["*.render"] = "textproto",
61+
["*.sound"] = "textproto",
62+
["*.spinemodel"] = "textproto",
63+
["*.spinescene"] = "textproto",
64+
["*.sprite"] = "textproto",
65+
["*.texture_profiles"] = "textproto",
66+
["*.tilemap"] = "textproto",
67+
["*.tilesource"] = "textproto",
68+
["*.manifest"] = "textproto"
69+
}
70+
},
971
}

0 commit comments

Comments
 (0)