File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Settings/Pages/Extensions Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -55,10 +55,10 @@ enum InstallationMethod: Equatable {
5555 switch packageManagerType {
5656 case . npm:
5757 return NPMPackageManager ( installationDirectory: installPath)
58- // case .cargo:
59- // return CargoPackageManager(installationDirectory: installPath)
60- // case .pip:
61- // return PipPackageManager(installationDirectory: installPath)
58+ case . cargo:
59+ return CargoPackageManager ( installationDirectory: installPath)
60+ case . pip:
61+ return PipPackageManager ( installationDirectory: installPath)
6262 case . golang:
6363 return GolangPackageManager ( installationDirectory: installPath)
6464 case . github, . sourceBuild:
Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ struct LanguageServerInstallView: View {
163163 Text ( line. contents)
164164 . font ( . caption. monospaced ( ) )
165165 . foregroundStyle ( line. isStepDivider ? . primary : . secondary)
166+ . textSelection ( . enabled)
166167 Spacer ( minLength: 0 )
167168 }
168169 }
You can’t perform that action at this time.
0 commit comments