vim-patch:fe712ced6 Fix duplicated code that only appears in git. vim-patch:8.2.1032: error message for declaring a variable cannot be translated vim-patch:8.2.4344: Amiga: header file included twice vim-patch:9.1.0979: VMS: type warning with $XDG_VIMRC_FILE vim-patch:8f214168b runtime(doc): Update os-support section for Amiga OS vim-patch:9.1.1894: global_runtime_dir appends /after directory when using XDG vim-patch:9.2.0029: STRLEN() used for a string literal vim-patch:4ed08ee60 runtime(doc): document Solaris as supported OS vim-patch:9.2.0897: GTK3 X11 redraws are not coalesced vim-patch:9.2.0900: FocusGained still triggered when closing dialog vim-patch:bc71c0b3f runtime(doc): remove todo entries that are fixed vim-patch:9.2.0903: Vim9: cannot use an exported function of an autoload import vim-patch:9.2.0905: MS-Windows: ghost cursor with ligatures vim-patch:78ebe0f42 CI: bump clang to v22 in ci-linux_asan vim-patch:8.2.0972: Vim9 script variable declarations need a type vim-patch:8.2.0973: Vim9: type is not checked when assigning to a script variable vim-patch:8.2.1003: Vim9: return type of sort() is too generic vim-patch:8.2.1024: Vim9: no error for using "let g:var = val" vim-patch:8.2.1028: Vim9: no error for declaring buffer, window, etc. variable vim-patch:8.2.3722: Amiga: superfluous messages for freeing lots of yanked text vim-patch:8.2.3837: QNX: crash when compiled with GUI but using terminal vim-patch:8.2.3881: QNX: crash when compiled with GUI but using terminal vim-patch:9.1.0337: Missing entry for XDG vimrc file in :version vim-patch:9.1.0345: Problem: gvimrc not sourced from XDG_CONFIG_HOME vim-patch:9.1.0393: 'viewdir' not respecting $XDG_CONFIG_HOME vim-patch:9.1.0680: VMS does not have defined uintptr_t vim-patch:9.1.1803: Amiga: build errors
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.
