]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
Fix incorrect spelling of Vim script and Vim9 script
authorHirohito Higashi <h.east.727@gmail.com>
Fri, 17 Oct 2025 17:48:34 +0000 (17:48 +0000)
committerChristian Brabandt <cb@256bit.org>
Fri, 17 Oct 2025 17:50:29 +0000 (17:50 +0000)
closes: #18591

Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/autoload/vimgoto.vim
runtime/doc/insert.txt
runtime/pack/dist/opt/helptoc/autoload/helptoc.vim
src/userfunc.c

index 421732ce89f8b6e56f337f4d440602e230c5422f..cb41cc7de25827baf0cbf88c3f96be7c4cd849b9 100644 (file)
@@ -4,9 +4,9 @@ vim9script
 # Contributers: @lacygoill
 #               Shane-XB-Qian
 #               Andrew Radev
-# Last Change:  2025 Sep 21
+# Last Change:  2025 Oct 17
 #
-# Vim Script to handle jumping to the targets of several types of Vim commands
+# Vim script to handle jumping to the targets of several types of Vim commands
 # (:import, :packadd, :runtime, :colorscheme), and to autoloaded functions of
 # the style <path>#<function_name>.
 #
index 1e148f9f3a44bfc8cc5f1b74d8aff34997cd7dc0..b0bd39a281963db5a03d850d990bbbd5daa5fa94 100644 (file)
@@ -1,4 +1,4 @@
-*insert.txt*    For Vim version 9.1.  Last change: 2025 Oct 16
+*insert.txt*    For Vim version 9.1.  Last change: 2025 Oct 17
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1706,7 +1706,7 @@ Notes:
 
 VIM                                                    *ft-vim-omni*
 
-Simple completion of Vimscript and Vim9script languages.
+Simple completion of Vim script and Vim9 script languages.
 
 Complete:
 
index 2b57cebae3ad926c6d3eea7dc6efc9f3199e4ef6..f3ce9febf958824c30b694c8b58c79ad2e01447a 100644 (file)
@@ -3,7 +3,7 @@ vim9script noclear
 # the Vim HelpTOC plugin, creates a table of contents in a popup
 # Maintainer: Vim project
 # Original Author: @lacygoill
-# Latest Change: 2025 Jul 10
+# Latest Change: 2025 Oct 17
 #
 # Config {{{1
 # g:helptoc {{{2
@@ -486,7 +486,7 @@ def SetToc() #{{{2
             ->substitute('\\\([&%$_#{}~\\^]\)', '\1', 'g')
 
     # SANITIZE_VIM {{{3
-    # #1 - Omit leading Vim9 script # or vimscript " markers and blanks
+    # #1 - Omit leading Vim9 script # or Vim script " markers and blanks
     # #2 - Omit numbered 3x { markers
     const SANITIZE_VIM = (text: string): string =>
         text->substitute('\v^[#[:blank:]"]*(.+)\ze[{]{3}([1-6])',
index 232a05b2b8d0e71a5ef4c047b97da0acb63cc914..6d8933be6b1039e8723da0da072aaca52923c721 100644 (file)
@@ -4637,7 +4637,7 @@ trans_function_name_ext(
                else
                {
                    // dropping "g:" without setting "is_global" won't work in
-                   // Vim9script, put it back later
+                   // Vim9 script, put it back later
                    prefix_g = TRUE;
                    extra = 2;
                }