Skip to content

Instantly share code, notes, and snippets.

View mbeaudru's full-sized avatar

Manuel Beaudru mbeaudru

View GitHub Profile
@mbeaudru
mbeaudru / saved-replies.md
Last active December 29, 2023 10:50
Github saved replies collection

Github saved replies saves you time by storing markdown snippets and easily retrieve them from the menu bar.

I use them regularly to quickly inject a markdown table in my PR descriptions, use nice alert syntax or even specify conventional comment type

image

Create saved replies

Go to saved replies github settings page

@mbeaudru
mbeaudru / settings.json
Created November 9, 2024 09:43
Make VSCode tabs & search show parent directory for page/layout files in NextJS projects
{
"workbench.editor.customLabels.patterns": {
"**/app/**/page.tsx": "${dirname}/page.${extname}",
"**/app/**/layout.tsx": "${dirname}/layout.${extname}"
},
}