Skip to content

Commit a420547

Browse files
h-eastchrisbra
authored andcommitted
runtime(misc): Use consistent "Vim script" spelling
References: https://groups.google.com/g/vim_dev/c/3Z5yM8KER2w/m/wAqws0QSEAAJ closes: #15863 Signed-off-by: h-east <h.east.727@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent 6e91853 commit a420547

10 files changed

Lines changed: 11 additions & 11 deletions

File tree

runtime/autoload/getscript.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ fun! getscript#GetLatestVimScripts()
365365
endfun
366366

367367
" ---------------------------------------------------------------------
368-
" GetOneScript: (Get Latest Vim Script) this function operates {{{1
368+
" GetOneScript: (Get Latest Vim script) this function operates {{{1
369369
" on the current line, interpreting two numbers and text as
370370
" ScriptID, SourceID, and Filename.
371371
" It downloads any scripts that have newer versions from vim.sourceforge.net.

runtime/doc/editing.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*editing.txt* For Vim version 9.1. Last change: 2024 Jul 10
1+
*editing.txt* For Vim version 9.1. Last change: 2024 Oct 13
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1325,7 +1325,7 @@ used (Motif only offers one pattern, but you can edit it).
13251325
For example, to have only Vim files in the dialog, you could use the following
13261326
command: >
13271327
1328-
let g:browsefilter = "Vim Scripts\t*.vim\nVim Startup Files\t*vimrc\n"
1328+
let g:browsefilter = "Vim scripts\t*.vim\nVim Startup Files\t*vimrc\n"
13291329
13301330
You can override the filter setting on a per-buffer basis by setting the
13311331
b:browsefilter variable. You would most likely set b:browsefilter in a

runtime/menu.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1137,7 +1137,7 @@ else
11371137
endif
11381138
tmenu ToolBar.LoadSesn Choose a session to load
11391139
tmenu ToolBar.SaveSesn Save current session
1140-
tmenu ToolBar.RunScript Choose a Vim Script to run
1140+
tmenu ToolBar.RunScript Choose a Vim script to run
11411141
tmenu ToolBar.Make Make current project (:make)
11421142
tmenu ToolBar.RunCtags Build tags in current directory tree (!ctags -R .)
11431143
tmenu ToolBar.TagJump Jump to tag under cursor

runtime/pack/dist/opt/comment/doc/comment.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Vim script): >
5757
5858
autocmd Filetype vim :setlocal commentstring="%s
5959
60-
This example sets the " as start of a comment for legacy Vim Script. For Vim9
60+
This example sets the " as start of a comment for legacy Vim script. For Vim9
6161
script, you would instead use the "#" char: >
6262
6363
autocmd Filetype vim :setlocal commentstring=#\ %s

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
" autoload/editorconfig.vim: EditorConfig native Vimscript plugin
1+
" autoload/editorconfig.vim: EditorConfig native Vim script plugin
22
" Copyright (c) 2011-2019 EditorConfig Team
33
" All rights reserved.
44
"

runtime/pack/dist/opt/editorconfig/doc/editorconfig.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Specify the mode of EditorConfig core. Generally it is OK to leave this option
4747
empty. Currently, the supported modes are "vim_core" (default) and
4848
"external_command".
4949

50-
vim_core: Use the included VimScript EditorConfig Core.
50+
vim_core: Use the included Vim script EditorConfig Core.
5151
external_command: Run external EditorConfig Core.
5252

5353
If "g:EditorConfig_core_mode" is not specified, this plugin will automatically

runtime/pack/dist/opt/editorconfig/plugin/editorconfig.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
" plugin/editorconfig.vim: EditorConfig native Vimscript plugin file
1+
" plugin/editorconfig.vim: EditorConfig native Vim script plugin file
22
" Copyright (c) 2011-2019 EditorConfig Team
33
" All rights reserved.
44
"

runtime/syntax/modula2/opt/r10.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ syn match modula2Base16Num "0[ux][0-9A-F]\+\('[0-9A-F]\+\)*"
157157
"| which greatly diminishes readability and thereby increases the opportunity
158158
"| for error during maintenance. Ideally, regular expressions should be split
159159
"| into small human readable pieces with interleaved comments that explain
160-
"| precisely what each piece is doing. Vimscript imposes poor design. :-(
160+
"| precisely what each piece is doing. Vim script imposes poor design. :-(
161161

162162
syn match modula2Base10Num
163163
\ "\(\(0[bux]\@!\|[1-9]\)[0-9]*\('[0-9]\+\)*\)\(\.[0-9]\+\('[0-9]\+\)*\(e[+-]\?[0-9]\+\('[0-9]\+\)*\)\?\)\?"

src/testdir/script_util.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
" Functions shared by the tests for Vim Script
1+
" Functions shared by the tests for Vim script
22

33
" Commands to track the execution path of a script
44
com! XpathINIT let g:Xpath = ''

src/testdir/test_expr.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,7 @@ func Test_string_interp()
929929
#" String conversion.
930930
call assert_equal('hello from ' .. v:version, $"hello from {v:version}")
931931
call assert_equal('hello from ' .. v:version, $'hello from {v:version}')
932-
#" Paper over a small difference between VimScript behaviour.
932+
#" Paper over a small difference between Vim script behaviour.
933933
call assert_equal(string(v:true), $"{v:true}")
934934
call assert_equal('(1+1=2)', $"(1+1={1 + 1})")
935935
#" Hex-escaped opening brace: char2nr('{') == 0x7b

0 commit comments

Comments
 (0)