6

嗨,我是 vim 的新手,我不知道缓冲区和窗口是什么。我找不到任何关于如何理解这两个的教程,所以这是我的问题:

  1. 什么是缓冲区,它与窗口有何不同?
  2. 缓冲区可以用来做什么?和窗口(我假设它仅用于编辑)?
  3. 我在哪里可以找到关于如何使用缓冲区和窗口的好教程?
4

1 回答 1

9

这回答了你的问题了吗?

   A buffer is the in-memory text of a file.
   A window is a viewport on a buffer.
   A tab page is a collection of windows.

A window is a viewport onto a buffer.  You can use multiple windows on one
buffer, or several windows on different buffers.

A buffer is a file loaded into memory for editing.  The original file remains
unchanged until you write the buffer to the file.

我认为最好的教程是 vim 的帮助文件。

编辑

您可以通过以下方式找到上述帮助信息:help window

于 2013-05-14T08:36:37.850 回答