Vim User Manual 阅读笔记 usr_08.txt Splitting windows 窗口分割

|08.1| Split a window

:split

CTRL-W w 或者 CTRL-W CTRL-W 切换窗口

CLOSE THE WINDOW 关闭某窗口

To close a window, 不会误关最后一个窗口,相对于":quit 或者 :zz"

:close

关闭其他窗口,只保留当前

:only

|08.2| Split a window on another file

分割并新开一个文件

:split 文件名

新开一个空文件

:new

|08.3| Window size

新切分窗口并设定高度

:3split 文件名

调整窗体高度(大小 )CTRL-W + / CTRL-W -

前置数字,就是调整多少size

{height}CTRL-W _ 将窗口高度调整到hight

|08.4| Vertical splits 纵向分割

:vsplit

:vertical new :vne

移动 分割的窗口

|----------|---------------------------------|
| CTRL-W h | move to the window on the left |
| CTRL-W j | move to the window below |
| CTRL-W k | move to the window above |
| CTRL-W l | move to the window on the right |

CTRL-W t move to the TOP window

CTRL-W b move to the BOTTOM window

更多搜索 Q_wi

|08.5| Moving windows

|-------------|------------------------------|
| CTRL-W K 大写 | 将分割窗口移动到最上端 |
| CTRL-W H 大写 | move window to the far left |
| CTRL-W J 大写 | move window to the bottom |
| CTRL-W L 大写 | move window to the far right |

|08.6| Commands for all windows

|--------|------------------|
| :qall | 退出所有窗口,如有改动,可确认! |
| :wall | 保存所有窗口 |
| :wqall | 保存所有并退出 |
| :qall! | 强退所有窗口 |

|08.7| Viewing differences with vimdiff 使用vimdiff查看差异

OPENING A WINDOW FOR ALL ARGUMENTS 以横向分割窗口打开多个文件,-o 参数

To make Vim open a window for each file, start it with the "-o" argument: >

vim -o one.txt two.txt three.txt

Vimdiff file1 file2 在 windows下好像不能用

THE FOLD COLUMN

Zc / zo 关/开 折叠部分,或者点击 + / -

DIFFING IN VIM

在VIM内部进行diff

:edit main.c

:vertical diffsplit main.c~

The ":vertical" command is used to make the window split vertically. If you omit this, you will get a horizontal split.

缺省为horizontal ,指定vertical 即可

Patch mode 暂时不会

If you have a patch or diff file, you can use the third way to start diff mode. First edit the file to which the patch applies. Then tell Vim the name of the patch file: >

:edit main.c

:vertical diffpatch main.c.diff

SCROLL BINDING 滚动绑定

:set noscrollbind / :set scrollbind

JUMPING TO CHANGES 跳转到变化的地方

]c / [c

REMOVING CHANGES

highlighting updated in all situations 更新变化对比

:diffupate

|----|-------------|--------------------|
| Dp | Diff put | 把当前差异除的文字复制到另一个窗口 |
| Do | Diff obtain | 把另一个窗口的差异文字复制到当前窗口 |
| dg | | |

|08.8| Various

For Normal mode commands a CTRL-W is prepended. CTRL-^ jumps to the alternate file, CTRL-W CTRL-^ splits the window and edits the alternate file.

指示在什么位置新开窗口

When splitting a window you can prepend a modifier command to tell where the

window is to appear:

:leftabove {cmd} left or above the current window

:aboveleft {cmd} idem

:rightbelow {cmd} right or below the current window

:belowright {cmd} idem

:topleft {cmd} at the top or left of the Vim window

:botright {cmd} at the bottom or right of the Vim window

|08.9| Tab pages

新开一个tab,编辑另一个文件

:tabedit <thatfile>

tabedit中间没有空格

新开一个tab,编辑同一个文件

:tab split

切换tab

gt

新开一个tab,打开内容

:tab help gt

相关推荐
qeen8710 小时前
【C++】类与对象之类的默认成员函数(二)
android·c语言·开发语言·c++·笔记·学习
m0_7360348510 小时前
存储基础和虚拟化
笔记
AOwhisky11 小时前
MySQL 学习笔记(第六期):MySQL 备份与恢复
运维·数据库·笔记·学习·mysql·云计算
华山沦贱12 小时前
open62541 V1.5.4版对C++ Builder支持的bug
笔记
稷下元歌13 小时前
七天学会plc 加机器视觉完整笔记:S7-1200 数据类型、存储区与寻址方式(I/Q/M/DB 详解)。
网络·数据库·笔记
逸模13 小时前
AI+BIM 重构连锁公装新范式 逸模打造数字化营建核心底座
大数据·人工智能·笔记·其他·信息可视化·重构
xqqxqxxq14 小时前
树结构技术学习笔记
数据结构·笔记·学习
Jumbo星14 小时前
新版vscode侧边资源管理器的文件搜索
ide·vscode·编辑器
ABAP-張旺15 小时前
ABAP:Visual Studio Code開發ABAP教程
ide·vscode·编辑器
十月的皮皮15 小时前
C语言学习笔记202606008- 三角形判断(3种方法)
c语言·笔记·学习