有没有与 wc -l 等效的方法来获取 vim 文件的列数?(我有一个文件,其中有几行和几列,用空格分隔)
答案1
答案2
只需按下CTRL-W v
,您正在处理的文件就会被拆分为两个独立的列。CTRL-W v
根据需要重复多次。
将 scrollbind: 设置set scrollbind
为您想要同步滚动的列。
例如:
vim afile # Open a file
^w v # split it
gg # go to top
:set scrollbind # bind this one
^w l # go to the new split
L # got to bottom of this split
zt # make it the top line
:set scrollbind # bind with this one
现在,当您在一列上移动时,另一列会滚动,就好像第一列的文本溢出到第二列一样。