File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,8 +31,10 @@ export class EnvManagerTreeItem implements EnvTreeItem {
3131 constructor ( public readonly manager : InternalEnvironmentManager ) {
3232 const item = new TreeItem ( manager . displayName , TreeItemCollapsibleState . Collapsed ) ;
3333 item . contextValue = this . getContextValue ( ) ;
34- item . description = manager . description ;
35- item . tooltip = manager . tooltip ;
34+ // Descriptions were a bit too visually noisy
35+ // https://github.com/microsoft/vscode-python-environments/issues/167
36+ item . description = undefined ;
37+ item . tooltip = manager . tooltip ?? manager . description ;
3638 item . iconPath = manager . iconPath ;
3739 this . treeItem = item ;
3840 }
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export class VenvManager implements EnvironmentManager {
6161 public readonly log : LogOutputChannel ,
6262 ) {
6363 this . name = 'venv' ;
64- this . displayName = 'venv Environments ' ;
64+ this . displayName = 'venv' ;
6565 this . description = VenvManagerStrings . venvManagerDescription ;
6666 this . tooltip = new MarkdownString ( VenvManagerStrings . venvManagerDescription , true ) ;
6767 this . preferredPackageManagerId = 'ms-python.python:pip' ;
You can’t perform that action at this time.
0 commit comments