Sen descrición

Justin M. Keyes 2bfdb091c7 NVIM v0.7.2 %!s(int64=2) %!d(string=hai) anos
.builds 917dfa510a ci(freebsd): enable oldtests %!s(int64=3) %!d(string=hai) anos
.github 9077e4e655 ci(release): use system GPerf on macOS #19105 %!s(int64=2) %!d(string=hai) anos
ci 0e10b17164 ci(provider): skip installing perl provider on macOS %!s(int64=2) %!d(string=hai) anos
cmake 1495c4d166 ci: show failed message on Windows %!s(int64=3) %!d(string=hai) anos
config 2c8f4d0912 fix: add forkpty for SunOS variants %!s(int64=3) %!d(string=hai) anos
contrib 5f3fff62a8 chore(flake): bump flake (#17632) %!s(int64=3) %!d(string=hai) anos
man cfa5d06801 docs(man): omit misleading mention of environment for -u NORC (#16379) %!s(int64=3) %!d(string=hai) anos
packaging 96b461a000 refactor(packaging): Windows: improve MSI, remove NSIS #18069 %!s(int64=3) %!d(string=hai) anos
runtime e8ee673392 NVIM v0.7.2 %!s(int64=2) %!d(string=hai) anos
scripts 0377973769 fix(runtime/genvimvim): omit s[ubstitute] from vimCommand %!s(int64=3) %!d(string=hai) anos
snap 192ea01edd cmake: install app icon in XDG hicolor icon theme (#14656) %!s(int64=3) %!d(string=hai) anos
src 71e2c49b17 refactor(tests): introduce testprg() %!s(int64=2) %!d(string=hai) anos
test 71e2c49b17 refactor(tests): introduce testprg() %!s(int64=2) %!d(string=hai) anos
third-party b0eedceab4 fix(build): strip trailing newline from variable (#19084) %!s(int64=2) %!d(string=hai) anos
unicode aadf85f3ca Update unicode files %!s(int64=4) %!d(string=hai) anos
.clang-format ac91c56085 chore: align clang-format configuration with clint %!s(int64=3) %!d(string=hai) anos
.clangd 5777fc1b8e Adding clangd language serever config file to point to build/ directory for compile_commands.json %!s(int64=3) %!d(string=hai) anos
.editorconfig d2f62b3164 chore(editorconfig): set max_line_length for .h and .in files (#16775) %!s(int64=3) %!d(string=hai) anos
.flake8 d651710de1 ci: pylint target via flake8 %!s(int64=5) %!d(string=hai) anos
.git-blame-ignore-revs 33909b6564 chore: update .git-blame-ignore-revs %!s(int64=3) %!d(string=hai) anos
.gitattributes d6f03aaafd fix: include ci/ in exported tarball %!s(int64=3) %!d(string=hai) anos
.gitignore 991e472881 feat(lua): add api and lua autocmds %!s(int64=3) %!d(string=hai) anos
.luacheckrc 60d3bb745d fix(filetype): set default ft_ignore_pat in filetype.lua (#16917) %!s(int64=3) %!d(string=hai) anos
.luacov 678a51b1da Lua: vim.validate() %!s(int64=5) %!d(string=hai) anos
.mailmap f1d5a2e82d chore: add .mailmap (#17453) %!s(int64=3) %!d(string=hai) anos
.travis.yml 035d82e0d3 build: update cmake min version to 3.10 #16065 %!s(int64=3) %!d(string=hai) anos
BACKERS.md 846fe25111 Update backer URL %!s(int64=9) %!d(string=hai) anos
BSDmakefile 69fe427df4 feat(lua)!: register_keystroke_callback => on_key %!s(int64=3) %!d(string=hai) anos
CMakeLists.txt e8ee673392 NVIM v0.7.2 %!s(int64=2) %!d(string=hai) anos
CONTRIBUTING.md e63e5d1dbd docs: typo fixes (#17859) %!s(int64=3) %!d(string=hai) anos
LICENSE.txt 087aad3dcd ci: improved cpack packaging %!s(int64=3) %!d(string=hai) anos
MAINTAIN.md e63e5d1dbd docs: typo fixes (#17859) %!s(int64=3) %!d(string=hai) anos
Makefile 680970bfbc ci(commitlint): use -u NONE instead of --clean %!s(int64=3) %!d(string=hai) anos
README.md 72652cbc46 feat(test): use nvim_exec in helpers.source() #16064 %!s(int64=3) %!d(string=hai) anos
codecov.yml 3eb241d831 bundle: move tree-sitter as a bundled dep %!s(int64=4) %!d(string=hai) anos

README.md

Neovim

Documentation | Chat | Twitter

GitHub CI Codecov coverage Coverity Scan analysis Clang analysis PVS-Studio analysis

Packages Debian CI Downloads nvim

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

Install from source

See the Building Neovim wiki page 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_INSTALL_PREFIX=/full/path/
make install

CMake hints for inspecting the build:

  • 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.

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 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:

        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.