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

时间:2017-06-14 02:59:09

标签: bash terminal xterm

我的.bashrc中有以下行:

set -o vi

当我处于插入模式时,我希望我的光标具有管道形状,当我处于命令模式时,我希望我的光标具有块形状,就像我在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)> "

不幸的是,正如答案中所解释的那样,示例脚本仅在回车后更改光标形状,而我想要的是当我点击< Esc>时光标形状发生变化。 (即当我改变模式时)。

我在Linux上运行本机终端应用程序,使用Bash 4.4.7和我的$ TERM变量设置为xterm-256color。另外,我不知道tmux是否会影响我的要求,但理想情况下,我希望该解决方案能够在tmux会话内部和外部工作。


我最终自己发现了这个问题的答案,我在另一个问题中描述了这个问题:

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

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

4 个答案:

答案 0 :(得分:10)

<强> SOLUTION:

我按照推荐的方式在这里发布我对自己问题的回答。


此解决方案适用于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会随命令提示一起打印到您的终端,以便提供一种关于您当前所处模式的可视指示(即命令模式与插入模式)模式)。

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

  • 命令模式:

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

    (ins) >>>
    


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

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之间转义字符,导致我的光标在命令模式下具有垂直条形状,在插入模式下具有管道形状。

答案 1 :(得分:1)

太棒了。我想补充一点,除了调整光标之外,还可能会有文本模式状态消息。这段代码有效:

set show-mode-in-prompt on
set vi-cmd-mode-string "\1\e[2 q\2cmd"
set vi-ins-mode-string "\1\e[6 q\2ins"
根据模式,

cmdins会显示在提示的左侧。

答案 2 :(得分:0)

如果要在其他程序运行之前将光标重置为正常状态,则可以使用环境变量PS0。来自man bash

在读取命令之后和执行命令之前,此参数的值会扩展(请参阅下面的PROMPING)并由交互式shell显示。

使用此命令设置PS0将导致其将光标恢复到非闪烁块:

PS0="\e[2 q"

答案 3 :(得分:0)

这是我正在使用的,是unicode。唯一的缺点是,当您不运行X服务器时,unicode会令人讨厌! :-)

 set show-mode-in-prompt on
 set vi-ins-mode-string \1\e[34;1m\2└──[ins] \1\e[0m\2
 set vi-cmd-mode-string \1\e[33;1m\2└──[ cmd] \1\e[0m\2