Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须阅读一些巨大的 Perl 脚本,我想知道你们如何像 GUI 文本编辑器那样在 Vim 中添加“最小化”括号功能。因此,我很难理解代码,如果我能最小化那些巨大的 if、函数等......我的心会非常感激。
通过最小化,我想您指的是代码“折叠”
:help fold
zC 递归关闭光标下的所有折叠,zc关闭单个折叠。 zo在光标下打开一个折叠,同时zR递归打开所有折叠。
也可以看看
:help :foldmethod
对于 Perl,您需要:set foldmethod=syntax.
:set foldmethod=syntax