Which GitHub Copilot features in VS Code are currently in preview, and which ones are generally available (GA)? #189432
-
Select Topic AreaQuestion Copilot Feature AreaVS Code BodyIn GitHub Copilot for VS Code, which features are currently in preview and which ones are GA? I see the feature list here: |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
Hey @muuuuminn, Yes — the Copilot feature matrix page is generally the closest thing to a “single source of truth” for which features are available in each environment (VS Code, Visual Studio, JetBrains, etc.). However, it does not always indicate the release status (GA vs Public Preview). Instead, it mainly shows availability in the IDE, not the maturity level of the feature. Because of that, you may see situations like the one you mentioned:
This means the matrix is indicating “available in VS Code”, not “generally available (GA)”. Where GA vs Preview status is actually documented Currently, GitHub doesn’t maintain a single consolidated list of GA vs Public Preview features for Copilot in VS Code. Instead, the status is typically indicated in one of these places:
Practical interpretation A good rule of thumb:
So the discrepancy you noticed is expected: |
Beta Was this translation helpful? Give feedback.
-
|
Quick Answer: There is no single separate list that definitively marks every feature as GA or Public Preview. You need to cross-reference multiple sources: Feature Matrix (Your First Link): This is the best source of truth for availability, using the key: ✓ = Supported (Available in that IDE, but may still be in preview - GA status not guaranteed) P = Under Preview (Explicitly marked as preview) ✗ = Not supported C = Closing down Note: The matrix itself is in public preview. Feature-Specific Docs (Your Second Link): Always check the dedicated documentation for a feature. It will explicitly state if the feature is in "public preview" (like the Prompt Files page does). VS Code Release Notes: For the most granular detail, check the release notes for specific VS Code versions (e.g., 1.108.0) to see if a feature was announced as generally available. Resolution Steps: To check a feature: First, see if it's marked P in the matrix. If it's ✓, then consult the feature's own documentation page (like you did for Prompt Files) to confirm if it's fully GA or still in preview. Why the discrepancy: The matrix shows availability in the IDE, while feature docs communicate the release stage. |
Beta Was this translation helpful? Give feedback.
-
|
@easwar16 @ash-iiiiish |
Beta Was this translation helpful? Give feedback.
Hey @muuuuminn,
Yes — the Copilot feature matrix page is generally the closest thing to a “single source of truth” for which features are available in each environment (VS Code, Visual Studio, JetBrains, etc.). However, it does not always indicate the release status (GA vs Public Preview). Instead, it mainly shows availability in the IDE, not the maturity level of the feature.
Because of that, you may see situations like the one you mentioned:
This means the matrix is indicating “available in VS Code”, not “generally available (GA)”.
Where GA vs P…