gpt4 book ai didi

Vim:如何在文件右侧插入一列

转载 作者:行者123 更新时间:2023-12-05 08:25:12 25 4
gpt4 key购买 nike

我有一个这样的文件,'¬'代表一个换行符。

aaaaaa¬
bb¬
cccccccc¬
ddddd¬

我知道我可以在可视 block 模式下在左侧插入一列并更改它对此,

eaaaaaa¬
ebb¬
ecccccccc¬
eddddd¬

但是,有什么简单的方法可以在任何指定的列的右侧插入一列,使其看起来像这样吗?谢谢。

aaaaaa              e¬
bb e¬
cccccccc e¬
ddddd e¬

最佳答案

这是我能想到的最简单的方法:

gg                  " move the cursor to line 1
A <Esc> " append the desired number of spaces and leave insert mode
<C-v> " start visual-block mode
G " expand the selection to the last line
re " replace the content of the visual selection with e

这需要 :set virtualedit=block:set nostartofline。请参阅 :help 'virtualedit':help 'startofline'

关于Vim:如何在文件右侧插入一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67555995/

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