Skip to content
Vim-fork focused on extensibility and usability
Branch: master
Clone or download
justinmk Merge #9970 from janlazo/vim-8.1.0794
vim-patch:8.0.1708,8.1.{369,794,1242}
Latest commit 6891d8a May 3, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
busted/outputHandlers test: Dump $NVIM_LOG_FILE contents (#8926) Aug 28, 2018
ci ci/build.ps1: Respect CMAKE_BUILD_TYPE if provided #9869 Apr 8, 2019
cmake Remove support for using jemalloc instead of the system allocator Jan 19, 2019
config os: remove uv_translate_sys_error impl #9652 Mar 1, 2019
contrib Remove support for using jemalloc instead of the system allocator Jan 19, 2019
man vim-patch:8.0.0716: "--clean", 'shadafile' #9907 Apr 15, 2019
runtime vim-patch:8.1.0369: continuation lines cannot contain comments May 3, 2019
scripts gen_vimdoc.py: support <pre> preformatted text [ci skip] Apr 30, 2019
snap dist: snap packaging #7918 Jan 29, 2018
src vim-patch:8.1.0369: continuation lines cannot contain comments May 3, 2019
test terminal: swap priority of terminal, editor highlights May 2, 2019
third-party Build gperf with configured host compiler. Apr 14, 2019
unicode vim-patch:8.1.1157: Unicode tables are out of date Apr 13, 2019
.clang-format lint: src/.clang-format Nov 28, 2018
.editorconfig editorconfig: set default tab width to 8 (#9467) Jan 7, 2019
.gitignore makedeps.bat Jun 5, 2018
.travis.yml ci: switch to Xcode 10.1 / macOS 10.13 Jan 17, 2019
BACKERS.md Update backer URL Nov 12, 2015
BSDmakefile build: show a hint for BSD make (#7275) Sep 16, 2017
CMakeLists.txt ci/build.ps1: Respect CMAKE_BUILD_TYPE if provided #9869 Apr 8, 2019
CONTRIBUTING.md doc [ci skip] #9478 Jan 26, 2019
ISSUE_TEMPLATE.md doc: ISSUE_TEMPLATE.md Jul 8, 2017
LICENSE LICENSE: add LuaJIT notice. #899 Jun 30, 2014
MAINTAIN.md gen_vimdoc.py: support <pre> preformatted text [ci skip] Apr 30, 2019
Makefile build: do not pass empty CMAKE_INSTALL_PREFIX Mar 19, 2019
README.md doc [ci skip] Apr 8, 2019
appveyor.yml ci/build.ps1: Respect CMAKE_BUILD_TYPE if provided #9869 Apr 8, 2019
codecov.yml CI/codecov: fix invalid yaml [ci skip] Jan 21, 2019

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.
You can’t perform that action at this time.