vim has scripts as opposed to ed/vi
page on vim script around
folding text
Can turn on or off with:
:set wrap
:set unwrap
Split horizontal.
:split
Split vertical
:vsplit
to navigate between windows
ctrl-W h/j/k/l
to resize
ctrl-W +-<>
to reset sizes
ctrl-W =
to swap window position
ctrl-W HJKL
to verical split and add terminal to top on
:term
To explore file tree in command mode:
:Explore
As in vi we can do
:e[dit] FILE_PATH
:vi[sual] FILE_PATH
However these now support autocompletion.
In addition we can also use, but this seems like a legacy feature?
:open FILE_PATH