gpt4 book ai didi

visual-studio-code - vs代码: unable to reverse search on built-in terminal

转载 作者:行者123 更新时间:2023-12-03 23:27:39 24 4
gpt4 key购买 nike

当我做 ^R在终端上进行反向搜索,我得到以下信息:
(^R) was pressed. Waiting for second key of chord...
我该如何解决?我在 OS X 上。

最佳答案

也许你真的想要两者!形式为的终端键绑定(bind)

Ctrl+R Ctrl+其他

也就是说,chords 的键绑定(bind)并且仍然使用

Ctrl+R(非和弦键绑定(bind))在终端中触发反向搜索。

您可以同时拥有这两者 - 将此键绑定(bind)添加到您的 keybindings.json:

  {
"key": "ctrl+r",
"command": "workbench.action.terminal.sendSequence",
"args": { "text": "\u0012" },
"when": "terminalFocus"
},

这会向终端发送“Ctrl+R”,从而开始反向搜索。即使您有其他以 Ctrl+R 开头的终端键弦,终端也不会等待键绑定(bind)的第二部分。

请注意,如果您经常使用搜索,则可以在命令中添加文本,例如:
    "args": { "text": "\u0012node" },

它已经开始搜索带有 node 的命令在他们中。

关于visual-studio-code - vs代码: unable to reverse search on built-in terminal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60669041/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com