vim-patch:8.1.0710: when using timers may wait for job exit quite long vim-patch:8.1.0969: message written during startup is truncated vim-patch:8.1.1043: Lua interface does not support Blob vim-patch:8.1.1389: changes are not flushed when end and start overlap vim-patch:8.1.1395: saving for undo may access invalid memory vim-patch:8.1.1534: modeless selection in popup window selects too much vim-patch:8.1.1571: textprop highlight starts too early if just after a tab vim-patch:8.1.1573: textprop test fails if screenhots do not work vim-patch:8.1.1663: compiler warning for using size_t vim-patch:8.1.1866: modeless selection in GUI does not work properly vim-patch:8.1.1871: modeless selection in GUI still not correct vim-patch:8.1.2085: MS-Windows: draw error moving cursor over double-cell char vim-patch:8.1.2107: various memory leaks reported by asan vim-patch:8.1.2146: build failure vim-patch:8.1.2296: text properties are not combined with syntax by default vim-patch:8.1.2299: ConPTY in MS-Windows 1909 is still wrong vim-patch:8.1.2337: double-click time sometimes miscomputed vim-patch:8.2.0300: Vim9: expression test fails without channel support vim-patch:8.2.0414: channel connect_waittime() test is flaky vim-patch:8.2.0501: Vim9: script test fails when channel feature is missing vim-patch:8.2.0508: Vim9: func and partial types not done yet vim-patch:8.2.0527: Vim9: function types insufficiently tested vim-patch:8.2.0565: Vim9: tests contain superfluous line continuation vim-patch:8.2.0640: Vim9: expanding does not work vim-patch:8.2.0700: Vim9: converting error message to exception not tested vim-patch:8.2.0701: Vim9 test fails without job feature vim-patch:8.2.1481: Vim9: line number reported with error may be wrong vim-patch:8.2.1609: Vim9: test fails when build without +channel vim-patch:8.2.1724: Vim9: assignment tests spread out vim-patch:8.2.1759: Vim9: Some tests are still using :let vim-patch:8.2.1865: Vim9: add() does not check type of argument vim-patch:8.2.1867: Vim9: argument to add() not checked for blob vim-patch:8.2.1965: Vim9: tests fail without the channel feature vim-patch:8.2.2301: Vim9: cannot unlet a dict or list item vim-patch:8.2.2304: Vim9: no test for unletting an imported variable vim-patch:8.2.3006: crash when echoing a value very early vim-patch:8.2.3007: Vim9: test for void value fails vim-patch:8.2.3008: startup test may hang vim-patch:8.2.3009: startup test may hang vim-patch:8.2.3181: Vim9: builtin function test fails without channel feature vim-patch:8.2.3242: Vim9: valgrind reports leaks in builtin function test vim-patch:8.2.3382: crash when getting the type of a NULL partial vim-patch:8.2.3845: Vim9: test fails when the channel feature is missing vim-patch:8.2.4407: Vim9: some code not covered by tests vim-patch:8.2.4410: Vim9: some code not covered by tests vim-patch:9.0.0563: timer_info() test fails vim-patch:9.0.2080: vim9_script test too large vim-patch:9.1.1541: Vim9: error when last enum value ends with a comma
Neovim is a project that seeks to aggressively refactor Vim in order to:
- Simplify maintenance and encourage contributions
- Split the work between multiple developers
- Enable advanced UIs without modifications to the core
- Maximize extensibility
See the Introduction wiki page and Roadmap for more information.
Features
- Modern GUIs
- API access from any language including C/C++, C#, Clojure, D, Elixir, Go, Haskell, Java/Kotlin, JavaScript/Node.js, Julia, Lisp, Lua, Perl, Python, Racket, Ruby, Rust
- Embedded, scriptable terminal emulator
- Asynchronous job control
- Shared data (shada) among multiple editor instances
- XDG base directories support
- Compatible with most Vim plugins, including Ruby and Python plugins
See :help nvim-features for the full list, and :help news for noteworthy changes in the latest version!
Install from package
Pre-built packages for Windows, macOS, and Linux are found on the Releases page.
Managed packages are in Homebrew, Debian, Ubuntu, Fedora, Arch Linux, Void Linux, Gentoo, and more!
Install from source
See BUILD.md and supported platforms for details.
The build is CMake-based, but a Makefile is provided as a convenience. After installing the dependencies, run the following command.
make CMAKE_BUILD_TYPE=RelWithDebInfo
sudo make install
To install to a non-default location:
make CMAKE_BUILD_TYPE=RelWithDebInfo CMAKE_INSTALL_PREFIX=/full/path/
make install
CMake hints for inspecting the build:
cmake --build build --target helplists all build targets.build/CMakeCache.txt(orcmake -LAH build/) contains the resolved values of all CMake variables.build/compile_commands.jsonshows the full compiler invocations for each translation unit.
Transitioning from Vim
See :help nvim-from-vim for instructions.
Project layout
├─ cmake/ CMake utils
├─ cmake.config/ CMake defines
├─ cmake.deps/ subproject to fetch and build dependencies (optional)
├─ runtime/ plugins and docs
├─ src/nvim/ application source code (see src/nvim/README.md)
│ ├─ api/ API subsystem
│ ├─ eval/ Vimscript subsystem
│ ├─ event/ event-loop subsystem
│ ├─ generators/ code generation (pre-compilation)
│ ├─ lib/ generic data structures
│ ├─ lua/ Lua subsystem
│ ├─ msgpack_rpc/ RPC subsystem
│ ├─ os/ low-level platform code
│ └─ tui/ built-in UI
└─ test/ tests (see test/README.md)
License
Neovim contributions since b17d96 are licensed under the
Apache 2.0 license, except for contributions copied from Vim (identified by the
vim-patch token). See LICENSE for details.
Vim is Charityware. You can use and copy it as much as you like, but you are
encouraged to make a donation for needy children in Uganda. Please see the
kcc section of the vim docs or visit the ICCF web site, available at these URLs:
https://iccf-holland.org/
https://www.vim.org/iccf/
https://www.iccf.nl/
You can also sponsor the development of Vim. Vim sponsors can vote for
features. The money goes to Uganda anyway.
