Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ private string[] GetPathAdditions()
var homeDir = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
return new[]
{
Path.Combine(homeDir, ".pyenv", "shims"), // pyenv: Python/uv when Unity is launched from Dock/Spotlight
Copy link

Copilot AI Feb 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider making the comment more specific: "pyenv-managed Python/uv when Unity is launched from Dock/Spotlight". This clarifies that this path is specifically for pyenv installations, not all Python installations. This helps future maintainers understand why this particular path is included.

Suggested change
Path.Combine(homeDir, ".pyenv", "shims"), // pyenv: Python/uv when Unity is launched from Dock/Spotlight
Path.Combine(homeDir, ".pyenv", "shims"), // pyenv-managed Python/uv when Unity is launched from Dock/Spotlight

Copilot uses AI. Check for mistakes.
"/opt/homebrew/bin",
"/usr/local/bin",
"/usr/bin",
Expand Down
Loading