Go to file
James McCoy ee77d8665f
NVIM v0.4.4
Maintenance release for v0.4.x series.

FIXES:

fd02e6351 #12701 ui: fix problem with sattr_T overflow
3e3002b90 #12710 fs: Ensure FileInfo struct is initialized
e4629f203 #12496 main.c: fix hang issue with recoverymode #12520
f558af8b1 #12209 fixed hang issue with --headless and -r option specified
cda119055 #12180 TUI: block signals on suspend
8399f7357 #12142 Fix issues revealed by gcc10 setting -fno-common by default
5e47cf27b netrw.vim: do not save +/* registers
5d41bfcce #11907 quickfix.c: Fix vimgrep regression
641e22913 #11903 screen: add missing redraws after a message
47bd62c15 loop_close: close all handles
d2730365e loop_close: call uv_stop(), fix bug
284b398eb #11821 loop_close: timout after 2 seconds
1b2666cd2 messages: echo "line1\r\nline2" should not clear line1
1bf90bf9d #11651 API: fix crash on copy_object(kObjectTypeWindow)
fafd63626 #11566 libcallnr: Use int, not int64_t, as the return type for Vim compat
972dd758c #11460 win_line: Fix crash with 'rightleft' in :terminal
4c48cf302 f_getenv/setenv: Access v_special when v_type is VAR_SPECIAL
2cd1ff762 #11360 paste: Select-mode, Visual-mode
2020-08-04 20:07:48 -04:00
.builds CI/OpenBSD: run functional tests 2019-09-01 22:49:33 -07:00
.github doc [ci skip] #10177 2019-06-30 00:09:45 +02:00
ci ci: fix build failure in Travis [skip appveyor] (#12678) 2020-08-02 22:20:17 -04:00
cmake build/MSVC: fix gettext multibyte issue #11774 2020-01-28 01:58:40 -08:00
config Merge #10098 'win: fix msg_puts_printf()' 2019-08-12 02:42:13 +02:00
contrib build: clean up / remove X_USE_STATIC (#10713) 2019-08-07 22:19:55 +02:00
man doc 2019-09-09 09:53:19 -07:00
runtime netrw.vim: do not save +/* registers 2020-02-29 18:34:19 -08:00
scripts release.sh: bump nvim.appdata.xml 2019-09-14 17:54:16 -07:00
snap dist: snap packaging #7918 2018-01-29 23:02:15 +01:00
src vim-patch:8.2.1259: empty group in 'tabline' may cause using an invalid pointer 2020-08-04 07:20:39 -04:00
test fixed hang issue with --headless and -r option specified (#12209) 2020-05-20 22:32:50 -04:00
third-party build/MSVC: fix gettext multibyte issue #11774 2020-01-28 01:58:40 -08:00
unicode vim-patch:8.1.1470: new doublewidth Unicode character U32FF #10126 2019-06-06 11:35:23 +02:00
.clang-format lint: src/.clang-format 2018-11-28 03:48:06 +01:00
.editorconfig editorconfig: set default tab width to 8 (#9467) 2019-01-07 02:15:19 +01:00
.flake8 ci: pylint target via flake8 2019-07-29 22:14:23 +02:00
.gitattributes make all *.h linguist-language as C file #10442 2019-07-08 10:51:41 +02:00
.gitignore .gitignore: src/nvim/testdir/*.tlog 2019-08-20 19:24:55 +02:00
.luacheckrc tests: move "busted" dir to "test" (#10518) 2019-07-16 22:02:50 +02:00
.travis.yml CI/travis: workaround broken homebrew 2020-02-22 14:16:57 -08:00
BACKERS.md Update backer URL 2015-11-11 19:50:33 -08:00
BSDmakefile build: show a hint for BSD make (#7275) 2017-09-16 10:54:49 +02:00
CMakeLists.txt NVIM v0.4.4 2020-08-04 20:07:48 -04:00
CONTRIBUTING.md doc [ci skip] #10383 2019-07-19 21:32:04 +02:00
LICENSE LICENSE: add LuaJIT notice. #899 2014-06-30 13:59:56 -04:00
MAINTAIN.md doc 2019-09-09 09:53:19 -07:00
Makefile tests: use runtime from build for doc/tags with :help (#10479) 2019-08-28 22:47:54 +02:00
README.md doc [ci skip] 2019-04-08 03:42:21 +02:00
appveyor.yml CI/AppVeyor: revert whitelist 2019-09-15 17:39:07 -07:00
codecov.yml ci: revisit/fix coverage uploading (#10201) 2019-06-25 15:35:33 +02:00

README.md

Neovim

Wiki | Documentation | Chat/Discussion | Twitter

Travis build status AppVeyor build status Codecov coverage Coverity Scan analysis Clang analysis PVS-Studio analysis

Packages Debian CI Downloads

Neovim is a project that seeks to aggressively refactor Vim in order to:

See the Introduction wiki page and Roadmap for more information.

Features

See :help nvim-features for the full list!

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, Gentoo, and more!

Install from source

The build is CMake-based, but a Makefile is provided as a convenience.

make CMAKE_BUILD_TYPE=RelWithDebInfo
sudo make install

To install to a non-default location:

make CMAKE_INSTALL_PREFIX=/full/path/
make install

To skip bundled (third-party/*) dependencies:

  1. Install the dependencies using a package manager.
    sudo apt install gperf luajit luarocks libuv1-dev libluajit-5.1-dev libunibilium-dev libmsgpack-dev libtermkey-dev libvterm-dev
    sudo luarocks build mpack
    sudo luarocks build lpeg
    sudo luarocks build inspect
    
  2. Build with USE_BUNDLED=OFF:
    make CMAKE_BUILD_TYPE=RelWithDebInfo USE_BUNDLED=OFF
    sudo make install
    

To inspect the build, these CMake features are useful:

  • cmake --build build --target help lists all build targets.
  • build/CMakeCache.txt (or cmake -LAH build/) contains the resolved values of all CMake variables.
  • build/compile_commands.json shows the full compiler invocations for each translation unit.

See the Building Neovim wiki page for details.

Transitioning from Vim

See :help nvim-from-vim for instructions.

Project layout

├─ ci/              build automation
├─ cmake/           build scripts
├─ runtime/         user plugins/docs
├─ src/nvim/        application source code (see src/nvim/README.md)
│  ├─ api/          API subsystem
│  ├─ eval/         VimL 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
├─ third-party/     CMake subproject to build dependencies
└─ test/            tests (see test/README.md)

License

Neovim is licensed under the terms of the Apache 2.0 license, except for parts that were contributed under the Vim license.

  • Contributions committed before b17d96 remain under the Vim license.

  • Contributions committed after b17d96 are licensed under Apache 2.0 unless those contributions were copied from Vim (identified in the commit logs 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:

        http://iccf-holland.org/
        http://www.vim.org/iccf/
        http://www.iccf.nl/

You can also sponsor the development of Vim.  Vim sponsors can vote for
features.  The money goes to Uganda anyway.