-
Notifications
You must be signed in to change notification settings - Fork 666
feat: Any chance for switch session with language
bind with?
#341
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi @seognil, Would you mind to describe more about the |
(Oh, I get it now, the The remaining problem is, I thought it could be better if each session has its own For example: // leetcode-training-folder/.vscode/settings.json
{
"leetcode.sessions": {
"js (session label)": {
"defaultLanguage": "javascript",
"outputFolder": "./js/"
},
"cpp": {
"defaultLanguage": "cpp",
"outputFolder": "./cpp/"
},
"python": {
"defaultLanguage": "python",
"outputFolder": "./py/"
}
}
} How about that 😄 |
Switch session is supported in the extension, see: https://github.com/jdneo/vscode-leetcode#manage-session About your proposed setting schema, I'm not sure if this is a common requirement from others. So I tend to leave it open for a while to see if there is any feedback from other users. Thank you. |
multi language
session switch?language
bind with?
🚀 Feature Proposal
Thanks for the work! 😄
I thought it would be great if it could has
multi language
session switch feature.I saw there was already a session feature, but I'm confused with the configuration,
(I could not found much detailed description in readme... 🤔)
Is there a separate config file like
.leetcoderc
? or only in vscode'ssettings.json
(Maybe a local
leetcode-progress
json structure to record, even better)(For self analyze propose...)Motivation
Because I want to practice with multi languages 🙋♀️
The text was updated successfully, but these errors were encountered: