neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 1d22b05f8db21a7df4a2f3599fcbb4f2a4d7f893
parent 0e04f880811723c5faafcd5103776d41d979cf97
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Tue, 16 Dec 2025 12:55:32 +0800

docs: update support.txt (#36903)


Diffstat:
Mruntime/doc/support.txt | 4++--
Mruntime/doc/vvars.txt | 2+-
Mruntime/lua/vim/_meta/vvars.lua | 2+-
Msrc/nvim/ex_docmd.c | 5++---
Msrc/nvim/vvars.lua | 2+-
5 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/runtime/doc/support.txt b/runtime/doc/support.txt @@ -14,8 +14,8 @@ Supported platforms *supported-platforms* `System` `Tier` `Versions` `Tested versions` Linux (x86_64) 1 >= 2.6.32, glibc >= 2.12 Ubuntu 24.04 Linux (arm64) 1 >= 2.6.32, glibc >= 2.12 Ubuntu 24.04 -macOS (x86_64) 1 >= 11 macOS 13 -macOS (arm64) 1 >= 11 macOS 15 +macOS (x86_64) 1 >= 11 macOS 15 +macOS (arm64) 1 >= 11 macOS 26 Windows 64-bit 1 >= Windows 10 Version 1809 Windows Server 2022 FreeBSD 1 >= 10 FreeBSD 14 OpenBSD 2 >= 7 diff --git a/runtime/doc/vvars.txt b/runtime/doc/vvars.txt @@ -118,7 +118,7 @@ v:echospace *v:errmsg* *errmsg-variable* v:errmsg - Last error message that occurred (not neccessarily displayed). + Last error message that occurred (not necessarily displayed). Modifiable (can be set). Example: >vim let v:errmsg = "" diff --git a/runtime/lua/vim/_meta/vvars.lua b/runtime/lua/vim/_meta/vvars.lua @@ -117,7 +117,7 @@ vim.v.dying = ... --- @type integer vim.v.echospace = ... ---- Last error message that occurred (not neccessarily displayed). +--- Last error message that occurred (not necessarily displayed). --- Modifiable (can be set). --- Example: --- diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c @@ -2520,9 +2520,8 @@ int parse_command_modifiers(exarg_T *eap, const char **errormsg, cmdmod_T *cmod, if (strncmp(eap->cmd, "'<,'>", 5) == 0) { // The automatically inserted Visual area range is skipped, so that // typing ":cmdmod cmd" in Visual mode works without having to move the - // range to after the modififiers. The command will be - // "'<,'>cmdmod cmd", parse "cmdmod cmd" and then put back "'<,'>" - // before "cmd" below. + // range to after the modifiers. The command will be "'<,'>cmdmod cmd", + // parse "cmdmod cmd" and then put back "'<,'>" before "cmd" below. eap->cmd += 5; cmd_start = eap->cmd; has_visual_range = true; diff --git a/src/nvim/vvars.lua b/src/nvim/vvars.lua @@ -135,7 +135,7 @@ M.vars = { errmsg = { type = 'string', desc = [=[ - Last error message that occurred (not neccessarily displayed). + Last error message that occurred (not necessarily displayed). Modifiable (can be set). Example: >vim let v:errmsg = ""