Vim: 将光标移动到块的末尾

Vim: Moving cursor to the end of a block

鉴于我在代码块的中间,我想在不使用 hjk、[=14 的情况下转到代码块的末尾=].

我正在寻找与 % 类似的行为,当我的光标位于代码块中的某个位置时,它也会起作用。

示例:

我想将光标移动到第 22 行的位置,容器块结束。

非常感谢您的帮助,谢谢。

看看下面的命令:

]) -> Move the cursor to the closed closing of first bracket '('
]} -> Move the cursor to the closed closing of second bracket '{'

当您寻找最近的第一个括号时,第一个应该适合您的情况。