vim-patch:8.2.0110: prop_find() is not implemented vim-patch:8.2.0318: Vim9: types not sufficiently tested vim-patch:8.2.0518: a terminal falls back to setting $TERM to "xterm" vim-patch:8.2.0543: Vim9: function with varargs does not work properly vim-patch:8.2.0571: double free when passing invalid argument to job_start() vim-patch:8.2.0582: color ramp test does not show text colors vim-patch:8.2.1641: Vim9: cannot use 0 or 1 where a bool is expected vim-patch:8.2.1692: build fails because TTFLAG_STATIC is missing vim-patch:8.2.1855: Vim9: get error message when nothing is wrong vim-patch:8.2.3104: Vim9: unspecified function type causes type error vim-patch:8.2.3479: crash when calling job_start with an invalid argument vim-patch:8.2.3481: failures when char is unsigned vim-patch:9.0.1377: job_status() may return "dead" if the process parent changed vim-patch:9.0.2084: Vim9: abstract static methods are possible vim-patch:9.1.0751: Error callback for term_start() not used vim-patch:9.1.1094: Vim9: problem finding implemented method in type hierarchy vim-patch:9.2.0889: VMS: spurious "INVALID DECC FEATURE VALUE" message at every startup vim-patch:6351c1775 CI: Bump github/codeql-action vim-patch:64b0196a9 runtime(doc): remove todo entry for test_codestyle errors vim-patch:8.2.0073: initializing globals with COMMA is clumsy vim-patch:8.2.0253: crash when using :disassamble without argument vim-patch:8.2.0306: Vim9: :substitute(pat(repl does not work in Vim9 script vim-patch:8.2.0311: Vim9: insufficient script tests vim-patch:8.2.0486: Vim9: some code and error messages not tested vim-patch:8.2.0529: Vim9: function argument with default not checked vim-patch:8.2.0530: test crashes on s390 vim-patch:8.2.0604: :startinsert in a terminal window used later vim-patch:8.2.0652: compiler warning for char conversion
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.txt for details.
