在自动命令中尝试此操作.
原文链接:https://www.f2er.com/bash/384971.htmlfunction! FoldCopyright if !exists( "b:foldedCopyright" ) let b:foldedCopyright = 1 1,15fold endif endfunction
适当调整第4行的范围.在最坏的情况下,版权在不同的地方开始并且是可变长度,这种模式应该做:
1,/Beginning of copyright/;/End of copyright/