- Notifications
You must be signed in to change notification settings - Fork15
Untildify conda path from settings#122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
@@ -113,20 +114,19 @@ async function findConda(): Promise<readonly string[] | undefined> { | |||
} | |||
export async function getConda(): Promise<string> { | |||
const config = getConfiguration('python'); | |||
const conda = config.get<string>('condaPath'); | |||
const conda = getCondaPathSetting(); | |||
if (conda) { | |||
return conda; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
This probably needs it too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Ah! I see you have added it above, where the setting is read.
bea87a4
intomicrosoft:mainUh oh!
There was an error while loading.Please reload this page.
Support using tilded (~) path for
condaPath
setting.