gpt4 book ai didi

bash - 如何根据 Bash 中的 VI 模式更改光标形状?

转载 作者:行者123 更新时间:2023-11-29 08:58:54 28 4
gpt4 key购买 nike

我的 .bashrc 中有以下行:

set -o vi

我希望我的光标在插入模式下呈管道形状,在命令模式下呈 block 状,就像我在 .vimrc 中放置以下内容时在 Vim 中的形状一样:

let &t_SI = "\e[6 q"
let &t_SR = "\e[4 q"
let &t_EI = "\e[2 q"

除了在这种情况下,我希望在命令行上具有等效的行为。

我在这里找到了我的问题的部分答案 - https://unix.stackexchange.com/questions/22527/change-cursor-shape-or-color-to-indicate-vi-mode-in-bash - 由@gogolb 撰写。

这是答案,已复制:

#!/bin/bash
# Script "kmtest.sh"

TEST=`bind -v | awk '/keymap/ {print $NF}'`
if [ "$TEST" = 'vi-insert' ]; then
echo -ne "\033]12;Green\007"
else
echo -ne "\033]12;Red\007"
fi

export PS1="\u@\h \$(kmtest.sh)> "

不幸的是,正如答案中所解释的那样,示例脚本仅在回车后更改光标形状,而我想要的是在我按下 时更改光标形状(即当我更改模式时).

我在 Linux 上运行 native 终端应用程序,Bash 4.4.7 和我的 $TERM 变量设置为 xterm-256color。另外,我不知道 tmux 是否对我的要求有任何影响,但理想情况下,我希望该解决方案在 tmux session 内外都能正常工作。


解决方案

我最终自己找到了这个问题的答案,我在我发布的另一个问题中对此进行了描述:

How to correctly link patched GNU readline library to all existing programs?

别担心,该解决方案不需要任何补丁。 ;)

最佳答案

解决方案:

我将按照建议在此处发布我自己的问题的答案。

此解决方案适用于 Bash 4.4+,因为从该版本的 Bash 开始,使用了 GNU readline 库的 7.0 版,其中包括必要的 vi-cmd-mode-stringvi-ins-mode-string 变量。

这些变量可以在你的 .inputrc 文件中设置如下,以实现我上面描述的功能:

set show-mode-in-prompt on
set vi-cmd-mode-string "\1\e[2 q\2"
set vi-ins-mode-string "\1\e[6 q\2"

解释:

对于那些真正对上述解决方案的工作原理感兴趣的人。

这两个变量,vi-cmd-mode-stringvi-ins-mode-string,与命令提示符一起打印到您的终端,以便提供一种关于您当前处于哪种模式的视觉指示器(即命令模式与插入模式)。

对于命令和插入模式,这两个变量的默认值分别是“(cmd)”和“(ins)”。因此,如果您只是将它们保留为默认值并有一个命令提示符,例如 PS1='>>>',那么您的提示符将如下所示:

  • 命令模式:

      (cmd) >>>
  • 插入模式:

      (ins) >>>

根据 readline 的手册页(见下文),您还可以通过在\1 和\2 转义符之间嵌入序列来指定不可打印的字符,例如终端控制序列字符。

vi-cmd-mode-string ((cmd))
This string is displayed immediately before the last line of the primary prompt when vi editing mode is active and in command mode. The value is expanded like a key binding, so the
standard set of meta- and control prefixes and backslash escape sequences is available. Use the \1 and \2 escapes to begin and end sequences of non-printing characters, which can be
used to embed a terminal control sequence into the mode string.
vi-ins-mode-string ((ins))
This string is displayed immediately before the last line of the primary prompt when vi editing mode is active and in insertion mode. The value is expanded like a key binding, so the
standard set of meta- and control prefixes and backslash escape sequences is available. Use the \1 and \2 escapes to begin and end sequences of non-printing characters, which can be
used to embed a terminal control sequence into the mode string.

因此,在我上面的解决方案中,我嵌入了终端控制序列,\e[2 q(使光标成为竖线)和 \e[6 q(使光标成为管道),在这些\1 和\2 转义字符之间,导致我的光标在命令模式下具有垂直条的形状,在插入模式下具有管道形状。

关于bash - 如何根据 Bash 中的 VI 模式更改光标形状?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44534678/

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