How to get rid of windows in Vim completely? -
i can't stand vertical or horizontal windows split in vim, because never remember how jump 1 , windows-related commands.
for example, when use command, vim opens text in horizontal split. possible configure vim such buffers used instead of windows?
buffers in-memory text/file opened. window way vim shows buffer(s) you. cannot see buffer without window. guess meant is, using single maximized window.
to question : how open in separate buffer
:
autocmd filetype wincmd o
will do. open doc in maximized window, of course, in separated buffer.
to "disable" split, don't execute split commands.. :sp
...
Comments
Post a Comment