Woland VimTip no.3
~~~~~~~~~~~~~
Want to execute a python script without leaving Vim?
Use :!python %
to execute the currently open python script and see it's output.
You can also always just open a terminal in Vim.
Try :term
Woland VimTip no.3
~~~~~~~~~~~~~
Want to execute a python script without leaving Vim?
Use :!python %
to execute the currently open python script and see it's output.
You can also always just open a terminal in Vim.
Try :term
Woland VimTip no.2
~~~~~~~~~~~~~
Use :bp :bn to go to previous and next buffer.
Use :bd to delete a buffer
Use :ls to get a list of your current buffers.
Use :b# where # is the id of a buffer you got from :ls
Woland VimTip no.1
~~~~~~~~~~~~~
Need to read something in the middle of the screen?
Use :set foldcolumn=20 and see what happens.