mirror of
https://github.com/vim/vim.git
synced 2026-05-28 00:21:37 +02:00
Fix a few more typos in various files
closes: #19427 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
ac1d379f3b
commit
e2473fe438
@@ -1,4 +1,4 @@
|
||||
*usr_41.txt* For Vim version 9.2. Last change: 2026 Feb 14
|
||||
*usr_41.txt* For Vim version 9.2. Last change: 2026 Feb 16
|
||||
|
||||
|
||||
VIM USER MANUAL by Bram Moolenaar
|
||||
@@ -38,7 +38,7 @@ language like for example .vim files or configuration files like .vimrc and
|
||||
uses to customize and extend its behavior.
|
||||
|
||||
*vim-script-notation*
|
||||
The correct notation is "Vim script" (or "Vim9 script" when refering to the
|
||||
The correct notation is "Vim script" (or "Vim9 script" when referring to the
|
||||
new Vim9 language |Vim9-script|), so we will use "Vim script" to refer to the
|
||||
Vim scripting language throughout this documentation. This shorthand helps to
|
||||
streamline explanations and discussions about scripting with Vim.
|
||||
|
||||
+1
-1
@@ -1606,7 +1606,7 @@ dict2list(typval_T *argvars, typval_T *rettv, dict2list_T what)
|
||||
}
|
||||
|
||||
/*
|
||||
* "items()" function
|
||||
* "items(dict)" function
|
||||
*/
|
||||
void
|
||||
dict2items(typval_T *argvars, typval_T *rettv)
|
||||
|
||||
+1
-1
@@ -8789,7 +8789,7 @@ f_islocked(typval_T *argvars, typval_T *rettv)
|
||||
}
|
||||
|
||||
/*
|
||||
* "items(dict)" function
|
||||
* "items()" function
|
||||
*/
|
||||
static void
|
||||
f_items(typval_T *argvars, typval_T *rettv)
|
||||
|
||||
@@ -508,7 +508,7 @@ endfunc
|
||||
func Test_textobj_cursor_on_leading_space_comment()
|
||||
let lines =<< trim END
|
||||
int main() {
|
||||
// multilple comments
|
||||
// multiple comments
|
||||
// cursor is between them
|
||||
}
|
||||
END
|
||||
|
||||
@@ -705,7 +705,7 @@ func Test_termdebug_remote_basic()
|
||||
defer delete(src_shadow_dir, 'rf')
|
||||
|
||||
let modes = [v:true]
|
||||
" termdebug only wokrs fine if socat is available on the remote machine
|
||||
" termdebug only works fine if socat is available on the remote machine
|
||||
" otherwise the communication pty will be unstable
|
||||
if executable('socat')
|
||||
let modes += [v:false]
|
||||
|
||||
Reference in New Issue
Block a user