mirror of
https://github.com/mhinz/vim-galore.git
synced 2025-02-24 10:09:29 +08:00
597 B
597 B
Neovim
:terminal
Neovim implements a proper terminal emulator
(libvterm) and can easily fire up a
new shell via :terminal
.
In Vim you run interactive
programs like this:
:!read foo && echo $foo
. In Neovim this won't work because :!
uses named
pipes (libuv processes) for
communication now. Use :te read foo && echo $foo
instead.
Related help:
:h :terminal
:h nvim-terminal-emulator