Nav apraksta

luukvbaal 29c8dabd41 fix(insexpand): update showmode when updating the screen (#34466) 2 nedēļas atpakaļ
.github 442dade5be ci(release): drop manual shasum collection 3 nedēļas atpakaļ
cmake 092e49d020 build: unset $TMUX when running tests (#34178) 1 mēnesi atpakaļ
cmake.config 921f8b0df7 fix(build): use correct cmake expression for $<CONFIG> 1 mēnesi atpakaļ
cmake.deps 03832842d5 build(deps): bump tree-sitter to v0.25.6 3 nedēļas atpakaļ
cmake.packaging 318676ad13 ci(release)!: remove backwards compatible releases 5 mēneši atpakaļ
contrib 535c2f8658 build(contrib): add zsh completion (#32617) 3 mēneši atpakaļ
deps 1f004970f0 feat(build): build.zig MVP: build and run functionaltests on linux 1 mēnesi atpakaļ
runtime 1ede826e04 vim-patch:d296af9: runtime(masm): set 'com' and 'cms' options in ftplugin 2 nedēļas atpakaļ
scripts 9d5eb3eda5 docs: rename builtin.txt, eval.txt #34212 4 nedēļas atpakaļ
src 29c8dabd41 fix(insexpand): update showmode when updating the screen (#34466) 2 nedēļas atpakaļ
test d86d4bacc1 fix(messages): make swapfile attention message part of prompt (#34414) 2 nedēļas atpakaļ
.cirrus.yml 8117db48ed ci(cirrus): update to freebsd-14-2 4 mēneši atpakaļ
.clang-format d561830a52 build: align .clang-format rules with uncrustify config 2 gadi atpakaļ
.clang-tidy 046e0956ee build: fix or silence new clang-tidy warnings 9 mēneši atpakaļ
.clangd bcaff309b6 build: disable UnusedIncludes from clangd 1 gadu atpakaļ
.editorconfig f96606371c docs: misc 3 mēneši atpakaļ
.emmyrc.json 3b6084ddf4 fix: type fixes 3 nedēļas atpakaļ
.git-blame-ignore-revs 56ae85a33c docs: .git-blame-ignore-revs #26397 1 gadu atpakaļ
.gitattributes 874e214993 fix: remove exec permission from .gitattributes #33140 3 mēneši atpakaļ
.gitignore 3268f51d20 fix(build): musl libc build.zig 1 mēnesi atpakaļ
.luacheckrc a81d2b6703 docs(luv): replace bundled LuaCATS meta files with upstream 1 mēnesi atpakaļ
.luacov 678a51b1da Lua: vim.validate() 5 gadi atpakaļ
.luarc.json a81d2b6703 docs(luv): replace bundled LuaCATS meta files with upstream 1 mēnesi atpakaļ
.mailmap 8c5af0eb85 docs: misc (#28837) 1 gadu atpakaļ
.stylua.toml 517f0cc634 build: enable lintlua for scripts/ dir #26391 1 gadu atpakaļ
.stylua2.toml f5b5f2095e refactor(tests): lint decorations_spec, float_spec, multigrid_spec #33274 1 mēnesi atpakaļ
.styluaignore f5b5f2095e refactor(tests): lint decorations_spec, float_spec, multigrid_spec #33274 1 mēnesi atpakaļ
BSDmakefile 69fe427df4 feat(lua)!: register_keystroke_callback => on_key 3 gadi atpakaļ
BUILD.md 0814086a23 docs: misc (#33093) 2 mēneši atpakaļ
CMakeLists.txt 8c5bd841ed build: lint decorations_spec etc. with lintlua (#34182) 1 mēnesi atpakaļ
CMakePresets.json 6a425e7045 docs: misc 5 mēneši atpakaļ
CONTRIBUTING.md 9d5eb3eda5 docs: rename builtin.txt, eval.txt #34212 4 nedēļas atpakaļ
INSTALL.md 0814086a23 docs: misc (#33093) 2 mēneši atpakaļ
LICENSE.txt ba1cc9e10c vim-patch:69c3493: runtime(doc): clarify license conditions for distributed runtime files 1 mēnesi atpakaļ
MAINTAIN.md a81d2b6703 docs(luv): replace bundled LuaCATS meta files with upstream 1 mēnesi atpakaļ
Makefile 3b6084ddf4 fix: type fixes 3 nedēļas atpakaļ
README.md 44afd07443 docs(tui): rename term.txt, nvim_terminal_emulator.txt #30398 9 mēneši atpakaļ
build.zig e25b99c5b6 feat(build): make build.zig run unittests 1 mēnesi atpakaļ
build.zig.zon 03832842d5 build(deps): bump tree-sitter to v0.25.6 3 nedēļas atpakaļ

README.md

Neovim Documentation | Chat

Coverity Scan 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, and :help news for noteworthy changes in the latest version!

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 BUILD.md and supported platforms 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_BUILD_TYPE=RelWithDebInfo 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

├─ cmake/           CMake utils
├─ cmake.config/    CMake defines
├─ cmake.deps/      subproject to fetch and build dependencies (optional)
├─ runtime/         plugins and docs
├─ src/nvim/        application source code (see src/nvim/README.md)
│  ├─ api/          API subsystem
│  ├─ eval/         Vimscript 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
└─ 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:

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

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