Vim 命令笔记

给指定行添加序号

let la = 行a
let lb = 行b +1
let lc = lb - la
for i in range(lc)
let cl = la + i
call setline(cl, '('.i.')'.getline(cl))
endfor

翻页

ctrl+f

原文地址:https://www.cnblogs.com/playerc/p/3298934.html