docs: add 'Set up your editor' to the installation guide#95928
Merged
Conversation
Contributor
Stats skippedCommit: ede8cf8 |
Contributor
Tests PassedCommit: ede8cf8 |
aurorascharff
force-pushed
the
aurorascharff/setup-your-editor
branch
from
July 18, 2026 21:51
f7bb056 to
8476b2f
Compare
aurorascharff
marked this pull request as ready for review
July 18, 2026 22:54
Contributor
There was a problem hiding this comment.
Pull request overview
Adds an App Router–only “Set up your editor” section to the installation guide to help developers distinguish same-named App Router files (e.g. page.tsx, layout.tsx) via editor tab labeling.
Changes:
- Introduces a new “Set up your editor” section under
<AppOnly>in the App Router installation guide. - Provides a copy/paste VS Code (and Cursor)
workbench.editor.customLabels.patternsconfiguration for two-level-deep folder labeling. - Adds a copyable “prompt” block for delegating the setup to a coding agent, plus a JetBrains “Good to know” note.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
aurorascharff
force-pushed
the
aurorascharff/setup-your-editor
branch
from
July 18, 2026 23:01
8476b2f to
5368fbc
Compare
aurorascharff
force-pushed
the
aurorascharff/setup-your-editor
branch
from
July 18, 2026 23:12
5368fbc to
ede8cf8
Compare
icyJoseph
approved these changes
Jul 20, 2026
icyJoseph
left a comment
Member
There was a problem hiding this comment.
Looks good.
Most of the review here was about going through the first 3 pages of getting started, thinking how can we make it all better, but for now, let's take this in.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a "Set up your editor" section to the App Router installation guide. The App Router names files by convention (
page.tsx,layout.tsx,route.ts), so an editor quickly fills with same-named tabs. This section shows how to tell them apart with VS Code / Cursor custom editor labels, labeled two folders deep so dynamic routes likeblog/[id]/page.tsxdo not all collapse to the same[id]label. It includes:.vscode/settings.jsonconfig (workbench.editor.customLabels.patterns) for setting it up by hand.Verification