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.
是否有一个插件或函数可以自动调整当前拆分的大小以恰好有 80 列?
并允许触发该功能。
如果您的意思是当前窗口,那么这只是
function ToggleResize() if exists('#AutoResize80') augroup AutoResize80 autocmd! augroup END augroup! AutoResize80 else augroup AutoResize80 autocmd! BufEnter * :vertical resize 80 augroup END endif endfunction