How to effectively work with multiple files in Vim

前端 未结 28 2748
甜味超标
甜味超标 2020-11-28 00:18

I\'ve started using Vim to develop Perl scripts and am starting to find it very powerful.

One thing I like is to be able to open multiple files at once with:

<
28条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-28 00:43

    I use buffer commands - :bn (next buffer), :bp (previous buffer) :buffers (list open buffers) :b (open buffer n) :bd (delete buffer). :e will just open into a new buffer.

提交回复
热议问题