Go to file
Daniel Hahler 7e4b744b64
ci: OpenBSD: enable functionaltest (#11178)
2019-10-08 17:36:58 +02:00
.builds ci: OpenBSD: enable functionaltest (#11178) 2019-10-08 17:36:58 +02:00
.github doc [ci skip] #10177 2019-06-30 00:09:45 +02:00
ci Merge pull request #11154 from blueyed/bump-tree-sitter 2019-10-07 13:34:23 +02:00
cmake build: run git-describe for dev version during build (#11117) 2019-09-30 00:10:29 +02:00
config Fix/revisit git-describe enhancement (#11124) 2019-10-02 03:45:59 +02:00
contrib cmake: use LibFindMacros for utf8proc (#11114) 2019-09-29 04:44:02 +02:00
man doc 2019-09-09 09:53:19 -07:00
runtime vim-patch:8.1.1354: getting a list of text lines is clumsy 2019-10-07 14:14:13 +02:00
scripts Fix/revisit git-describe enhancement (#11124) 2019-10-02 03:45:59 +02:00
snap dist: snap packaging #7918 2018-01-29 23:02:15 +01:00
src Merge #11077 'vim-patch:8.1.{1354,1356,1362,1588}' 2019-10-07 21:51:04 -07:00
test tests: retry: "wait() evaluates the condition on given interval" (#11155) 2019-10-06 22:47:40 +02:00
third-party third-party: upgrade libluv: 1.30.0-0 => 1.30.1-1 (#11092) 2019-09-30 12:55:47 +02: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 vim-patch:8.1.2056: "make test" for indent files doesn't cause make to fail 2019-09-18 22:59:13 +02:00
.luacheckrc tests: move "busted" dir to "test" (#10518) 2019-07-16 22:02:50 +02:00
.luacov ci: coverage for Lua (no Windows, using luacov) (#11127) 2019-10-04 16:09:42 +02:00
.travis.yml ci: coverage for Lua (no Windows, using luacov) (#11127) 2019-10-04 16:09:42 +02: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 cmake: only set LUA_PRG with successful check (#11172) 2019-10-07 17:42:40 +02: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 vim-patch:8.1.1213: "make clean" in top dir does not cleanup indent test output 2019-09-18 22:46:47 +02:00
README.md cmake: use LibFindMacros for utf8proc (#11114) 2019-09-29 04:44:02 +02:00
appveyor.yml CI/AppVeyor: revert whitelist 2019-09-15 17:36:17 -07:00
codecov.yml tree-sitter: vendor tree-sitter runtime 2019-09-28 14:30:48 +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 libutf8proc-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.