Skip to content

Commit 1b565ee

Browse files
h-eastchrisbra
authored andcommitted
Fix incorrect spelling of Vim script and Vim9 script
closes: #18591 Signed-off-by: Hirohito Higashi <[email protected]> Signed-off-by: Christian Brabandt <[email protected]>
1 parent 6582299 commit 1b565ee

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

runtime/autoload/vimgoto.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ vim9script
44
# Contributers: @lacygoill
55
# Shane-XB-Qian
66
# Andrew Radev
7-
# Last Change: 2025 Sep 21
7+
# Last Change: 2025 Oct 17
88
#
9-
# Vim Script to handle jumping to the targets of several types of Vim commands
9+
# Vim script to handle jumping to the targets of several types of Vim commands
1010
# (:import, :packadd, :runtime, :colorscheme), and to autoloaded functions of
1111
# the style <path>#<function_name>.
1212
#

runtime/doc/insert.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*insert.txt* For Vim version 9.1. Last change: 2025 Oct 16
1+
*insert.txt* For Vim version 9.1. Last change: 2025 Oct 17
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1706,7 +1706,7 @@ Notes:
17061706

17071707
VIM *ft-vim-omni*
17081708

1709-
Simple completion of Vimscript and Vim9script languages.
1709+
Simple completion of Vim script and Vim9 script languages.
17101710

17111711
Complete:
17121712

runtime/pack/dist/opt/helptoc/autoload/helptoc.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ vim9script noclear
33
# the Vim HelpTOC plugin, creates a table of contents in a popup
44
# Maintainer: Vim project
55
# Original Author: @lacygoill
6-
# Latest Change: 2025 Jul 10
6+
# Latest Change: 2025 Oct 17
77
#
88
# Config {{{1
99
# g:helptoc {{{2
@@ -486,7 +486,7 @@ def SetToc() #{{{2
486486
->substitute('\\\([&%$_#{}~\\^]\)', '\1', 'g')
487487

488488
# SANITIZE_VIM {{{3
489-
# #1 - Omit leading Vim9 script # or vimscript " markers and blanks
489+
# #1 - Omit leading Vim9 script # or Vim script " markers and blanks
490490
# #2 - Omit numbered 3x { markers
491491
const SANITIZE_VIM = (text: string): string =>
492492
text->substitute('\v^[#[:blank:]"]*(.+)\ze[{]{3}([1-6])',

src/userfunc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4637,7 +4637,7 @@ trans_function_name_ext(
46374637
else
46384638
{
46394639
// dropping "g:" without setting "is_global" won't work in
4640-
// Vim9script, put it back later
4640+
// Vim9 script, put it back later
46414641
prefix_g = TRUE;
46424642
extra = 2;
46434643
}

0 commit comments

Comments
 (0)