See runtime/doc/news.txt (or `:help news` in Nvim). Following is a list of fix/feature commits in this release. FEATURES -------------------------------------------------------------------------------- -5551da79c1lsp: improve signature help display #35190 -abfbd155daprovider: detect venv python via "pynvim-python" tool #35273 BUILD -------------------------------------------------------------------------------- -3343ee971bdeps: CMake generation fails when path contains spaces #35332 FIXES -------------------------------------------------------------------------------- -27282696feapi: fix not capturing output in cmdline mode (#35322) -09b0003d38api: nvim_create_user_command addr option should allow ranges #35077 -3ab06d5188api: on_detach consistently before buf_freeall autocmds (#35369) -53db7fc3efapi,lsp: call on_detach before wiping out the buffer #35367 -30b801eff2checkhealth: wrong ABI version for treesitter parsers #35327 -a05b70baa6clipboard: correct blockwise register width computation (#35038) -990b320592cmdline: :checkhealth completion with multiple args (#35060) -a3590afba5diff: set default diff flags properly (#35450) -f4b4c27a35float: cursor visible in "hidden" floating window (#35219) -3cf9dac2bafolds: error when deleting lines at end of buffer #35396 -d70d469c04health: accept TERM=tmux-direct #35511 -edfb447ff8health: update advice for Python #35564 -359d65c902iter: ArrayIter:last returns nil when filtered to empty #34697 -44b8255fa2lsp: close floating preview window correctly #34946 -6b820258cdlsp: don't override `config.title` in `vim.lsp.buf.signature_help()` #35075 -8f2d6f7ce2lsp: show title when global winborder is set (#35181) -1bea812953lsp: update window title when cycling through signatures #35407 -9261aef2f3lsp/health: always use vim.inspect to show root_markers (#34667) -d185057bc7lsp/health: ensure valid table before concatenating (#34930) -09f702bc13lua: report error in Lua Funcref callback properly (#35555) -7f1e112a32pum: check for cmdline mode properly -41fa343484snippet: jumping backwards to choice node (#35062) -2e4baa3679snippet: setting end_right_gravity (#35061) -4b957a4d18treesitter: inconsistent highlight of multiline combined injection #35307 -fa64f2d09btreesitter: run FileType autocmds in the context of `<abuf>` -e841d653aftreesitter: show capture-level priorities in :Inspect #35443 -e299430ff5tui: do not remove SIGWINCH handler when resize events are enabled (#35221) (#35238) -64afa93187tutor: use `invalidate` field in `nvim_buf_set_extmark()` -2124146164tutor: use legacy syntax for lesson 3.1 of vim-01-beginner.tutor -6fd842a4fdui: check for cmdline mode properly VIM PATCHES -------------------------------------------------------------------------------- -e68d3ef8865ddcecf: runtime(help): Add better support for language annotation highlighting -35a66f74c76fea0a5: runtime(help): Add Vim lang annotation support for codeblocks -819e545c28714671d: runtime(misc): use :hor :term to ensure new term window is split horizontally (#35064) -a65c4be2de8.1.0425: ml_get error and crash with appendbufline() -8dd88056f18.2.1672: v_lock is used when it is not initialized (#35416) -6c2f06b5379.1.0748: :keep* commmands are sometimes misidentified as :k -54c2ea142a9.1.1599: :bnext doesn't go to unlisted help buffers (#35216) -53a0d997029.1.1601: Patch v8.1.0425 was wrong -ced4eed7339.1.1607: :apple command detected as :append (#35237) -bd4b45dd1b9.1.1608: No command-line completion for :unsilent {command} -d21db345ef9.1.1611: possible undefined behaviour in mb_decompose() (#35275) -744d96bd769.1.1612: Ctrl-G/Ctrl-T do not ignore the end search delimiter -5ec7d988579.1.1613: tests: test_search leaves a few swapfiles behind -39ae9a99719.1.1633: Search pattern shown incorrectly with negative offset (#35337) -e6ea97a6919.1.1665: Outdated comment in eval.c (#35436) -6fd8ba05a69.1.1667: Another outdated comment in eval.c (#35438) -4c5cb950c69.1.1688: potential buffer overrun in bufwrite.c (#35497) -99817471d79.1.1700: Multiline ignorecase specific pattern does not match with 'ignorecase' (#35520) -fb6c677d57b9ea0a8: runtime(doc): tweak documentation style in helphelp.txt
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.
