1

我能够设置 VSCode,以便在 powershell.exe 之上使用 Cmder。我希望这可以让我使用常用​​的键盘快捷键,例如 Ctrl+Backspace 来更快地删除单词。不幸的是,每次我点击那个快捷方式时它只输出'^W'。在 VSCode 之外的标准 cmd.exe 或 Cmder 中,此快捷方式有效。

知道为什么吗?我在想,我期待的形式可能甚至不是应该起作用的东西。

谢谢!

这是我的设置供参考:

"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"terminal.integrated.shellArgs.windows": [
    "-ExecutionPolicy",
    "Bypass",
    "-NoLogo",
    "-NoProfile",
    "-NoExit",
    "-Command",
    ". 'C:\\Users\\..\\..\\Apps\\cmder_mini\\vendor\\profile.ps1'"
],

在此处输入图像描述

4

0 回答 0