prepend to visual block not working in vim

后端 未结 3 1429
被撕碎了的回忆
被撕碎了的回忆 2021-01-14 23:25

I\'m really fond of this idea of using Ctrl-V (Ctrl-Q in windows) to modify a visual block. The technique is explained here: In

3条回答
  •  抹茶落季
    2021-01-15 00:00

    The source of the problem was lack of compiled support (thanks to my shared hosting provider). For others who are having a similar problem, check vim for the +visualextra option. You can check from normal mode with:

    :echo has('visualextra')
    

    It will return a "1" if it does. Otherwise you can look using:

    :version
    

    Or by invoking the --version option from the commandline:

    vim --version | grep visualextra
    

提交回复
热议问题