VSCode 终端发送与 iterm 中相同的序列
VSCode terminal send same sequence like in iterm
我正在使用 VSCode 集成终端和 zsh and zsh-autosuggestions。除了 autosuggest-execute
命令外,一切都按预期工作。
我正在寻找一种方法将 '^[auto'
序列发送到 VSCode 终端,根据 vscode docs 我的 none 尝试到目前为止已经成功。
在Iterm2中,我成功地发送了这样的序列:
ZSH 配置
# .zshrc
bindkey '^[auto' autosuggest-execute
尝试失败
{
"key": "cmd+e",
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "\u001b^[auto"
}
}
注意:在 Ubuntu 20.04 上开箱即用,但在 MacOS Catalina (10.15.7 (19H15))
上无法正常工作
终于找到解决办法了
{
"key": "cmd+e",
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "\u001bauto"
}
}
我正在使用 VSCode 集成终端和 zsh and zsh-autosuggestions。除了 autosuggest-execute
命令外,一切都按预期工作。
我正在寻找一种方法将 '^[auto'
序列发送到 VSCode 终端,根据 vscode docs 我的 none 尝试到目前为止已经成功。
在Iterm2中,我成功地发送了这样的序列:
ZSH 配置
# .zshrc
bindkey '^[auto' autosuggest-execute
尝试失败
{
"key": "cmd+e",
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "\u001b^[auto"
}
}
注意:在 Ubuntu 20.04 上开箱即用,但在 MacOS Catalina (10.15.7 (19H15))
上无法正常工作终于找到解决办法了
{
"key": "cmd+e",
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "\u001bauto"
}
}