因此,我刚刚下载了Visual Studio Code,用作我学习Python的默认IDE。我在64位计算机上运行,因此我将默认终端窗口设置为powershell。
我将保存大多数文件的位置是大约8个文件夹,在可以编写任何命令之前,这些文件夹都会显示在终端中。有什么办法可以隐藏或缩短终端中的文件路径?
答案 0 :(得分:6)
如@Biclops所建议,这里有很好的信息:configure PowerShell to only show the current folder in the prompt
但是,我需要更多基本信息才能使其正常运行。这是一个很好的入门资源:Windows PowerShell Profiles。因此,我首先按照此处建议的步骤进行操作:
[始终使用PowerShell使用vscode的集成终端]
test-path $profile
(是否设置了个人资料?)new-item -path $profile -itemtype file -force
(假设以上答案为假)notepad $profile
(打开记事本)粘贴(来自上面的超级用户答案)
function prompt {
$p = Split-Path -leaf -path (Get-Location)
"$p> "
}
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
(在集成终端PS提示符下,也来自SuperUser答案)