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