我需要在Visual Studio代码中清除终端的内容。
每次我使用Maven时,终端的输出都会附加到以前的构建中,这让我感到困惑。
我如何清除终端窗口与一些命令或键盘快捷方式?
CLS不起作用;它只隐藏文本。
我需要在Visual Studio代码中清除终端的内容。
每次我使用Maven时,终端的输出都会附加到以前的构建中,这让我感到困惑。
我如何清除终端窗口与一些命令或键盘快捷方式?
CLS不起作用;它只隐藏文本。
当前回答
粘贴此命令-
Remove-Item (Get-PSReadlineOption)。HistorySavePath
在你的powershell和启动新的powershell和它发现清除
欲了解更多详情,请查看此链接@ https://www.shellhacks.com/clear-history-powershell/
其他回答
如果你在Mac上,它是⌘+k。:)
使用Ctrl + K。这将在Visual Studio代码中清理控制台。
每个注释,在VSCode(1.29及以上)的后期版本中,这个快捷方式是缺失的/需要手动创建。
Navigate: File > Preferences > Keyboard Shortcuts search for workbench.action.terminal.clear If it has no mapping or you wish to change the mapping, continue; otherwise note & use the existing mapping Double click on this entry & you'll be prompted for a key binding. Hold CTRL and tap K. Ctrl + K should now be listed. Press enter to save this mapping Right click the entry and select Change when expression. Type terminalFocus then press enter. That's it. Now, when the terminal is in focus and you press Ctrl+K you'll get the behaviour you'd have expected to get from running clear/cls.
若要永久删除前面的命令,请使用此命令
Set-PSReadlineOption -HistoryNoDuplicates Remove-Item (Get-PSReadlineOption)。HistorySavePath Alt-f7
我在windows 10机器上使用Visual Studio Code 1.52.1。'cls'或'Clear'不清除终端。
只写
exit
它将关闭终端并按下
ctrl + shift +。”
打开新的终端。
workbench.action.terminal.clear不再工作(至少对Mac上的VS Code Insiders 1.54)
下面是将CTRL+L映射到默认控制台功能的方法。
{
"key": "ctrl+l",
"command": "workbench.action.terminal.sendSequence",
"args": {"text": "\u000c"},
"when": "terminalFocus"
}