gpt4 book ai didi

bash - VSCode 集成终端不加载 .bashrc 或 .bash_profile

转载 作者:行者123 更新时间:2023-11-29 08:54:41 27 4
gpt4 key购买 nike

我有以下文件来处理 shell 配置:

#~/.bash_profile
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi

#~/.bashrc
... configure shell

如果我使用 code 从命令行打开 VSCode,每当我添加集成 shell 的新实例时,我的 .bashrc 就会被加载。

但是,如果我通过其图标打开 VSCode,则只会加载我的 .profile

我如何确保加载我的 .bashrc

我尝试了 terminal.integrated.shellArgs.osx 设置的各种设置,但没有成功。

最佳答案

只需将 shell 参数添加到 VsCode settings.json 文件即可。

settings.json 文件路径如下:

Windows: C:\Users\<username>\AppData\Roaming\Code\User\settings.json`

Linux: $HOME/.config/Code/User/settings.json

Mac: $HOME/Library/Application\ Support/Code/User/settings.json

添加以下内容之一:

"terminal.integrated.shellArgs.windows": ["-l"],

"terminal.integrated.shellArgs.linux": ["-l"],

"terminal.integrated.shellArgs.osx": ["-l"],

这将使用登录参数启动您选择的 shell。这将因此执行任何设置的用户配置文件。

关于bash - VSCode 集成终端不加载 .bashrc 或 .bash_profile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51820921/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com