Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/spectrum3847/2026-Spectrum/llms.txt

Use this file to discover all available pages before exploring further.

Knowing your editor shortcuts dramatically speeds up everyday coding tasks. This page covers the VS Code shortcuts most useful for FRC Java development with the 2026 Spectrum codebase.
ShortcutAction
Ctrl+PQuick open — search and open any file by name
Ctrl+Click or F12Go to Definition — jump to where a class/method is defined
Alt+Shift+F12Find All References — see every use of a symbol
F2Refactor Rename — rename a symbol everywhere in the project
Ctrl+Shift+PCommand Palette — run any VS Code or WPILib command
`Ctrl+“Toggle the integrated terminal

Code editing shortcuts

ShortcutAction
Ctrl+/Toggle line comment for selected lines
Shift+Alt+DownDuplicate current line or selection
Ctrl+Alt+Up/DownAdd cursor above/below current position
Alt+ClickPlace cursor at clicked location (multi-cursor)
Middle Click+DragColumn selection across lines
Ctrl+DSelect next occurrence of selected text
Ctrl+Shift+LSelect all occurrences of selected text
Ctrl+UDeselect last added occurrence (undo Ctrl+D)
Alt+Shift+ArrowExpand/shrink selection by word → line → block

AI assistance shortcuts

ShortcutAction
TabAccept a GitHub Copilot inline suggestion
Ctrl+RightAccept the next word of a Copilot suggestion
Ctrl+Shift+IOpen Copilot Chat panel

Build, simulate, and deploy

ShortcutAction
Ctrl+Shift+P → type simLaunch WPILib: Simulate Robot Code
Shift+F5Deploy code to the robot
F5Start debugging/simulation
Terminal: ./gradlew buildFull build with Spotless formatting
Terminal: ./gradlew deployBuild and deploy to the RoboRIO
Terminal: ./gradlew cleanClear cached build artifacts

Git and GitHub shortcuts

ShortcutAction
Ctrl+Shift+GOpen Source Control panel (stage, commit, push)
Ctrl+Shift+PGit: PullPull latest changes from remote
Ctrl+Shift+PGit: Create BranchCreate a new feature branch
Use Ctrl+Shift+PJava: Clean Java Language Server Workspace when you see red errors that don’t match actual code issues — this rebuilds the Java language server’s index.

Markdown preview

When editing documentation files (.md):
ShortcutAction
Ctrl+Shift+VPreview Markdown rendered output
Ctrl+K VOpen Markdown preview to the side

Build docs developers (and LLMs) love