Skip to content

Commit d30236b

Browse files
authored
feat: support Godot uid (#281)
Co-authored-by: Shinigami92 <Shinigami92@users.noreply.github.com>
1 parent 2ec6939 commit d30236b

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Open your VS Code, bring up your `settings.json`, copy-n-paste the snippet below
2626
<!-- eslint-skip -->
2727

2828
```jsonc
29-
// updated 2025-03-27 03:47
29+
// updated 2025-05-03 20:45
3030
// https://github.com/antfu/vscode-file-nesting-config
3131
"explorer.fileNesting.enabled": true,
3232
"explorer.fileNesting.expand": false,
@@ -100,6 +100,7 @@ Open your VS Code, bring up your `settings.json`, copy-n-paste the snippet below
100100
"*.db": "*.db-shm, *.db-wal",
101101
"*.ex": "$(capture).html.eex, $(capture).html.heex, $(capture).html.leex",
102102
"*.fs": "$(capture).fs.js, $(capture).fs.js.map, $(capture).fs.jsx, $(capture).fs.ts, $(capture).fs.tsx, $(capture).fs.rs, $(capture).fs.php, $(capture).fs.dart",
103+
"*.gd": "$(capture).gd.uid",
103104
"*.go": "$(capture)_test.go",
104105
"*.java": "$(capture).class",
105106
"*.js": "$(capture).js.map, $(capture).*.js, $(capture)_*.js, $(capture).d.ts, $(capture).d.ts.map, $(capture).js.flow",

update.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,10 @@ const gofile = [
320320
'.air*',
321321
]
322322

323+
const godot = [
324+
'$(capture).gd.uid',
325+
]
326+
323327
const gemfile = [
324328
'gemfile.lock',
325329
'.ruby-version',
@@ -571,6 +575,7 @@ const full = sortObject({
571575
'*.db': stringify(sqlite),
572576
'*.razor': stringify(razor),
573577
'sanity.config.*': stringify(sanity),
578+
'*.gd': stringify(godot),
574579
...Object.fromEntries(Object.entries(frameworks).map(([n, i]) => [n, stringify([...i, ...libraries])])),
575580
...svelteKitRouting,
576581
}, (a, b) => {

0 commit comments

Comments
 (0)