i'm currently having a really annoying problem since i ran windows repair on my PC. My wsl remote vscode for some reason that i couldn't find out in the net, isn't able to open the current folder in the terminal. Instead, it opens vscode appdata windows folder(/mnt/c/Users/Jonathan/AppData/Local/Programs/Microsoft VS Code), like in the images linked below:
open in integrated terminal result
My remote settings.json file:
{
"go.autocompleteUnimportedPackages": true,
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"icon": "terminal-bash",
"cwd": "/home/jonathanr/Documents/workspace"
},
"zsh": {
"path": "zsh"
},
"fish": {
"path": "fish"
},
"tmux": {
"path": "tmux",
"icon": "terminal-tmux"
},
"pwsh": {
"path": "pwsh",
"icon": "terminal-powershell"
}
}
}
Thanks a lot for any help!