Go to file
Justin M. Keyes c70c8b607f doc [ci skip] #9478
- Lua
- developer guidelines
- MAINTAIN.md
- TUI: cleanup
- TUI: mention Windows terminfo builtins
- cleanup if_pyth, redirect python-bindeval tag

Helped-by: Björn Linse <bjorn.linse@gmail.com>
Helped-by: erw7 <erw7.github@gmail.com>
2019-01-26 20:38:14 +01:00
busted/outputHandlers test: Dump $NVIM_LOG_FILE contents (#8926) 2018-08-28 22:13:34 +02:00
ci ci: install neovim gem on macOS 2018-12-27 09:44:54 -05:00
cmake Remove support for using jemalloc instead of the system allocator 2019-01-19 18:09:52 -05:00
config Merge pull request #9526 from jamessan/remove-jemalloc 2019-01-20 13:58:38 -05:00
contrib Remove support for using jemalloc instead of the system allocator 2019-01-19 18:09:52 -05:00
man nvim.1: Add missing .El directive 2018-12-31 20:55:15 -05:00
runtime doc [ci skip] #9478 2019-01-26 20:38:14 +01:00
scripts doc [ci skip] #9478 2019-01-26 20:38:14 +01:00
snap dist: snap packaging #7918 2018-01-29 23:02:15 +01:00
src doc [ci skip] #9478 2019-01-26 20:38:14 +01:00
test tests/lua: test for multiline error messages in lua 2019-01-23 19:34:13 +01:00
third-party :terminal : Fix F1-F4 key codes (#9535) 2019-01-23 19:51:23 +01:00
unicode Update unicode files 2018-07-10 06:53:11 -04: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
.gitignore makedeps.bat 2018-06-06 00:58:57 +02:00
.travis.yml ci: switch to Xcode 10.1 / macOS 10.13 2019-01-17 15:59:44 +01: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 Remove support for using jemalloc instead of the system allocator 2019-01-19 18:09:52 -05:00
CONTRIBUTING.md doc [ci skip] #9478 2019-01-26 20:38:14 +01:00
ISSUE_TEMPLATE.md doc: ISSUE_TEMPLATE.md 2017-07-08 14:59:06 +02:00
LICENSE LICENSE: add LuaJIT notice. #899 2014-06-30 13:59:56 -04:00
MAINTAIN.md doc [ci skip] #9478 2019-01-26 20:38:14 +01:00
Makefile build: fix `doc_html` target 2019-01-04 02:17:23 +01:00
README.md doc [ci skip] #9478 2019-01-26 20:38:14 +01:00
appveyor.yml CI/AppVeyor: invalidate .deps if build.ps1 changes 2018-10-22 01:28:02 +02:00
codecov.yml CI/codecov: fix invalid yaml [ci skip] 2019-01-21 19:45:47 +01:00

README.md

Neovim

Wiki | Documentation | Twitter | Community | Gitter Chat

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.

Throughput Graph

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

make CMAKE_BUILD_TYPE=RelWithDebInfo
sudo make install

To install to a non-default location, set CMAKE_INSTALL_PREFIX:

make CMAKE_EXTRA_FLAGS="-DCMAKE_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
    

CMake features:

  • List all build targets:
    cmake --build build --target help
    
  • Print all variable definitions:
    cmake -LAH
    
  • build/CMakeCache.txt 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.