如何在vs code中让终端发出铃声

问题描述 投票:0回答:1

我在其他地方看到可以使用

cmd ^G
(输入 ctrl+G)让终端发出噪音。我尝试了一下,发现它在 VS Code 终端中没有任何反应。

我会提供更多详细信息,但所有相关内容都在我的答案中。

visual-studio-code terminal
1个回答
0
投票

我在完成这项工作时遇到了两个问题。

第一个问题是我在 Windows 上使用 bash,它不允许您输入我需要的 ctrl+g 字符。相反,命令是

echo -en "\007"
,它使用相同的 Unicode 字符,但以 bash 可以理解的方式包含它。此修复来自这里的堆栈溢出

第二个问题是 VS Code 阻止声音播放,修复方法是在辅助功能设置中启用终端铃声。

这可以通过

来完成
...
"accessibility.signals.terminalBell": {
  "sound": "on"
}
...

或在图形用户界面中使用功能>辅助信号>终端响铃

image of the settings gui showing the features menu at the accessibility signals section at the terminal bell setting

© www.soinside.com 2019 - 2024. All rights reserved.