在Visual Studio Code中,Ctrl-k快捷键绑定到clearing the terminal。
我已经将bash配置为Windows中的终端,并希望其表现出与传统Emacs按键绑定相同的行为,也就是说,使其终止行尾。
我尝试在用户设置中使用此配置禁用默认的按键绑定,但是没有用:
commandsToSkipShell": [
"workbench.action.terminal.clear"
]
如何使终端服从我经过20年训练的肌肉记忆?
最佳答案
遇到同样的问题。将此片段添加到keybindings.json中可以正常工作:
{
"key": "ctrl+k",
"command": "deleteAllRight",
"when": "terminalFocus"
}
关于terminal - VSCode:如何使Ctrl + k杀到行尾?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50569100/