Neovim features

From wikinotes

Reports

:version      " list vim build params/features
:checkhealth  " list info about interpreters, parsers, etc.

Terminal

Neovim has it's own embedded terminal!

:terminal        " open terminal in current tab
<c-leader><c-n>  " escape terminal mode into normal-mode
tnoremap  <c-a>  " keybind namespace for within terminal mode

<c-leader><c-n> (move cursor to filename) gf   "open file in nvim

" ex:  (perhaps bind this to a key)
cd /path/to/src
realpath file.py
<c-leader><c-n>
k
gf

neovim-remote

Start a neovim-server, neovim connects to this, adding files to the same session.