Skip to content

Instantly share code, notes, and snippets.

View hAbuMustafa's full-sized avatar
🤩
Excited

Hosam Sultan hAbuMustafa

🤩
Excited
View GitHub Profile
@hAbuMustafa
hAbuMustafa / sveltekit-custom-labels-for-vs-code.json
Last active August 30, 2024 20:38
SvelteKit Custom Labels for VSCode
"workbench.editor.customLabels.patterns": {
// The main content for the whole website
"**/src/routes/+page.svelte": "Main Page", // The home route page skeleton
"**/src/routes/+page.[tj]s": "Main Page Script (c)", // The script for it
"**/src/routes/+page.server.[tj]s": "Main Page Script (s)", // The server script for it
"**/src/routes/+layout.svelte": "Root Layout", // The main (root) layout for the website
"**/src/routes/+layout.[tj]s": "Root Layout Script (c)", // The client script associated with the whole website
"**/src/routes/+layout.server.[tj]s": "Root Layout Script (s)", // The server script associated with the whole website
// Root error pages