我需要在Visual Studio代码中清除终端的内容。

每次我使用Maven时,终端的输出都会附加到以前的构建中,这让我感到困惑。

我如何清除终端窗口与一些命令或键盘快捷方式?

CLS不起作用;它只隐藏文本。


当前回答

默认情况下,在VSCode中没有与清除终端相关的键绑定。因此,必须按照以下步骤添加一个NEW Keybinding:

导航:文件—>首选项—>键盘快捷键。(或者同时使用Ctrl + K和Ctrl + S) 在顶部的搜索栏中输入:终端:清除。 带有Command: Terminal:Clear的条目将显示以下VSCode命令workbench.action.terminal.clear。 右键单击它,并按更改键绑定。然后一起按Ctrl + K,然后回车。它将被拯救。 再次右键单击并按“更改表达式”。只需输入:terminalFocus。它将被拯救。

最后,打开集成终端,焦点在终端内,按Ctrl + K。

其他回答

文件>首选项>键盘快捷方式。 搜索“终端:清除” 默认情况下没有键盘快捷方式。 只需点击横幅中的加号(+)图标,并给出首选 您选择的清除终端的快捷方式。 我更喜欢使用ctrl+k,因为该快捷方式没有分配给任何命令。

粘贴此命令-

Remove-Item (Get-PSReadlineOption)。HistorySavePath

在你的powershell和启动新的powershell和它发现清除

欲了解更多详情,请查看此链接@ https://www.shellhacks.com/clear-history-powershell/

使用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.

默认情况下,在VSCode中没有与清除终端相关的键绑定。因此,必须按照以下步骤添加一个NEW Keybinding:

导航:文件—>首选项—>键盘快捷键。(或者同时使用Ctrl + K和Ctrl + S) 在顶部的搜索栏中输入:终端:清除。 带有Command: Terminal:Clear的条目将显示以下VSCode命令workbench.action.terminal.clear。 右键单击它,并按更改键绑定。然后一起按Ctrl + K,然后回车。它将被拯救。 再次右键单击并按“更改表达式”。只需输入:terminalFocus。它将被拯救。

最后,打开集成终端,焦点在终端内,按Ctrl + K。

接受的答案应该是以下,这是unmultimedia对上述答案之一的评论:

Cmd+K可以工作,你只需要在键盘快捷键中再次设置 将workbench.action.terminal.clear转换为Cmd+K,因此显示为Source: 用户而不是源:Default - unmultimedia 3月12日19日1:13