mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:partial:9.0.1886: Various Typos
Problem: Various Typos
Solution: Fix Typos
This is a collection of typo related commits.
closes: vim/vim#12753
closes: vim/vim#13016
ee17b6f70d
Co-authored-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Adri Verhoef <a3@a3.xs4all.nl>
Co-authored-by: Viktor Szépe <viktor@szepe.net>
Co-authored-by: nuid64 <lvkuzvesov@proton.me>
Co-authored-by: Meng Xiangzhuo <aumo@foxmail.com>
Co-authored-by: Dominique Pellé <dominique.pelle@gmail.com>
This commit is contained in:
parent
bc09fc04b8
commit
b9d9cd7742
@ -119,7 +119,7 @@ CTRL-R {register} *i_CTRL-R*
|
|||||||
'/' the last search pattern
|
'/' the last search pattern
|
||||||
':' the last command-line
|
':' the last command-line
|
||||||
'.' the last inserted text
|
'.' the last inserted text
|
||||||
*i_CTRL-R_-*
|
*i_CTRL-R_-*
|
||||||
'-' the last small (less than a line) delete
|
'-' the last small (less than a line) delete
|
||||||
register. This is repeatable using |.| since
|
register. This is repeatable using |.| since
|
||||||
it remembers the register to put instead of
|
it remembers the register to put instead of
|
||||||
|
@ -169,7 +169,7 @@ CTRL-W v *CTRL-W_v*
|
|||||||
it doesn't!
|
it doesn't!
|
||||||
|
|
||||||
CTRL-W n *CTRL-W_n*
|
CTRL-W n *CTRL-W_n*
|
||||||
CTRL-W CTRL_N *CTRL-W_CTRL-N*
|
CTRL-W CTRL-N *CTRL-W_CTRL-N*
|
||||||
:[N]new [++opt] [+cmd] *:new*
|
:[N]new [++opt] [+cmd] *:new*
|
||||||
Create a new window and start editing an empty file in it.
|
Create a new window and start editing an empty file in it.
|
||||||
Make new window N high (default is to use half the existing
|
Make new window N high (default is to use half the existing
|
||||||
|
@ -39,7 +39,7 @@ endif
|
|||||||
|
|
||||||
let &l:define='\v(<fn>|<const>|<var>|^\s*\#\s*define)'
|
let &l:define='\v(<fn>|<const>|<var>|^\s*\#\s*define)'
|
||||||
|
|
||||||
" Safety check: don't execute zip from current directory
|
" Safety check: don't execute zig from current directory
|
||||||
if !exists('g:zig_std_dir') && exists('*json_decode') &&
|
if !exists('g:zig_std_dir') && exists('*json_decode') &&
|
||||||
\ executable('zig') && get(g:, 'zig_exec', get(g:, 'plugin_exec', 0))
|
\ executable('zig') && get(g:, 'zig_exec', get(g:, 'plugin_exec', 0))
|
||||||
\ && (fnamemodify(exepath("zig"), ":p:h") != s:tmp_cwd
|
\ && (fnamemodify(exepath("zig"), ":p:h") != s:tmp_cwd
|
||||||
|
@ -919,7 +919,8 @@ char *replace_termcodes(const char *const from, const size_t from_len, char **co
|
|||||||
// Check for special <> keycodes, like "<C-S-LeftMouse>"
|
// Check for special <> keycodes, like "<C-S-LeftMouse>"
|
||||||
if (do_special && ((flags & REPTERM_DO_LT) || ((end - src) >= 3
|
if (do_special && ((flags & REPTERM_DO_LT) || ((end - src) >= 3
|
||||||
&& strncmp(src, "<lt>", 4) != 0))) {
|
&& strncmp(src, "<lt>", 4) != 0))) {
|
||||||
// Replace <SID> by K_SNR <script-nr> _.
|
// Change <SID>Func to K_SNR <script-nr> _Func. This name is used
|
||||||
|
// for script-local user functions.
|
||||||
// (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
|
// (room: 5 * 6 = 30 bytes; needed: 3 + <nr> + 1 <= 14)
|
||||||
if (end - src >= 4 && STRNICMP(src, "<SID>", 5) == 0) {
|
if (end - src >= 4 && STRNICMP(src, "<SID>", 5) == 0) {
|
||||||
if (sid_arg < 0 || (sid_arg == 0 && current_sctx.sc_sid <= 0)) {
|
if (sid_arg < 0 || (sid_arg == 0 && current_sctx.sc_sid <= 0)) {
|
||||||
|
@ -1648,7 +1648,7 @@ bool utf_allow_break_before(int cc)
|
|||||||
0x2021, // ‡ double dagger
|
0x2021, // ‡ double dagger
|
||||||
0x2026, // … horizontal ellipsis
|
0x2026, // … horizontal ellipsis
|
||||||
0x2030, // ‰ per mille sign
|
0x2030, // ‰ per mille sign
|
||||||
0x2031, // ‱ per then thousand sign
|
0x2031, // ‱ per the thousand sign
|
||||||
0x203c, // ‼ double exclamation mark
|
0x203c, // ‼ double exclamation mark
|
||||||
0x2047, // ⁇ double question mark
|
0x2047, // ⁇ double question mark
|
||||||
0x2048, // ⁈ question exclamation mark
|
0x2048, // ⁈ question exclamation mark
|
||||||
|
@ -2002,8 +2002,8 @@ endfunc
|
|||||||
" Test for BufUnload autocommand that unloads all the other buffers
|
" Test for BufUnload autocommand that unloads all the other buffers
|
||||||
func Test_bufunload_all()
|
func Test_bufunload_all()
|
||||||
let g:test_is_flaky = 1
|
let g:test_is_flaky = 1
|
||||||
call writefile(['Test file Xxx1'], 'Xxx1', 'D')"
|
call writefile(['Test file Xxx1'], 'Xxx1', 'D')
|
||||||
call writefile(['Test file Xxx2'], 'Xxx2', 'D')"
|
call writefile(['Test file Xxx2'], 'Xxx2', 'D')
|
||||||
|
|
||||||
let content =<< trim [CODE]
|
let content =<< trim [CODE]
|
||||||
func UnloadAllBufs()
|
func UnloadAllBufs()
|
||||||
|
@ -1235,7 +1235,7 @@ func Test_edit_LEFT_RIGHT()
|
|||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_edit_MOUSE()
|
func Test_edit_MOUSE()
|
||||||
" This is a simple test, since we not really using the mouse here
|
" This is a simple test, since we're not really using the mouse here
|
||||||
CheckFeature mouse
|
CheckFeature mouse
|
||||||
10new
|
10new
|
||||||
call setline(1, range(1, 100))
|
call setline(1, range(1, 100))
|
||||||
@ -1817,7 +1817,7 @@ func Test_edit_charconvert()
|
|||||||
close!
|
close!
|
||||||
set charconvert&
|
set charconvert&
|
||||||
|
|
||||||
" 'charconvert' function doesn't create a output file
|
" 'charconvert' function doesn't create an output file
|
||||||
func Cconv1()
|
func Cconv1()
|
||||||
endfunc
|
endfunc
|
||||||
set charconvert=Cconv1()
|
set charconvert=Cconv1()
|
||||||
|
@ -2630,7 +2630,7 @@ func Test_state()
|
|||||||
call term_sendkeys(buf, getstate)
|
call term_sendkeys(buf, getstate)
|
||||||
call WaitForAssert({-> assert_match('state: mSc; mode: n', term_getline(buf, 6))}, 1000)
|
call WaitForAssert({-> assert_match('state: mSc; mode: n', term_getline(buf, 6))}, 1000)
|
||||||
|
|
||||||
" A operator is pending
|
" An operator is pending
|
||||||
call term_sendkeys(buf, ":call RunTimer()\<CR>y")
|
call term_sendkeys(buf, ":call RunTimer()\<CR>y")
|
||||||
call TermWait(buf, 25)
|
call TermWait(buf, 25)
|
||||||
call term_sendkeys(buf, "y")
|
call term_sendkeys(buf, "y")
|
||||||
|
@ -346,7 +346,7 @@ func Test_dict_big()
|
|||||||
endtry
|
endtry
|
||||||
call assert_equal('Vim(let):E716: "1500"', str)
|
call assert_equal('Vim(let):E716: "1500"', str)
|
||||||
|
|
||||||
" lookup each items
|
" lookup each item
|
||||||
for i in range(1500)
|
for i in range(1500)
|
||||||
call assert_equal(3000 - i, d[i])
|
call assert_equal(3000 - i, d[i])
|
||||||
endfor
|
endfor
|
||||||
|
@ -347,7 +347,7 @@ func Test_normal06_formatprg()
|
|||||||
CheckNotMSWindows
|
CheckNotMSWindows
|
||||||
|
|
||||||
" uses sed to number non-empty lines
|
" uses sed to number non-empty lines
|
||||||
call writefile(['#!/bin/sh', 'sed ''/./=''|sed ''/./{', 'N', 's/\n/ /', '}'''], 'Xsed_format.sh')
|
call writefile(['#!/bin/sh', 'sed ''/./=''|sed ''/./{', 'N', 's/\n/ /', '}'''], 'Xsed_format.sh', 'D')
|
||||||
call system('chmod +x ./Xsed_format.sh')
|
call system('chmod +x ./Xsed_format.sh')
|
||||||
let text = ['a', '', 'c', '', ' ', 'd', 'e']
|
let text = ['a', '', 'c', '', ' ', 'd', 'e']
|
||||||
let expected = ['1 a', '', '3 c', '', '5 ', '6 d', '7 e']
|
let expected = ['1 a', '', '3 c', '', '5 ', '6 d', '7 e']
|
||||||
@ -378,11 +378,10 @@ func Test_normal06_formatprg()
|
|||||||
" clean up
|
" clean up
|
||||||
set formatprg=
|
set formatprg=
|
||||||
setlocal formatprg=
|
setlocal formatprg=
|
||||||
call delete('Xsed_format.sh')
|
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_normal07_internalfmt()
|
func Test_normal07_internalfmt()
|
||||||
" basic test for internal formmatter to textwidth of 12
|
" basic test for internal formatter to textwidth of 12
|
||||||
let list=range(1,11)
|
let list=range(1,11)
|
||||||
call map(list, 'v:val." "')
|
call map(list, 'v:val." "')
|
||||||
10new
|
10new
|
||||||
@ -2588,7 +2587,7 @@ func Test_normal33_g_cmd2()
|
|||||||
exe "norm! G0\<c-v>4k4ly"
|
exe "norm! G0\<c-v>4k4ly"
|
||||||
exe "norm! gvood"
|
exe "norm! gvood"
|
||||||
call assert_equal(['', 'abfgh', 'abfgh', 'abfgh', 'fgh', 'fgh', 'fgh', 'fgh', 'fgh'], getline(1,'$'))
|
call assert_equal(['', 'abfgh', 'abfgh', 'abfgh', 'fgh', 'fgh', 'fgh', 'fgh', 'fgh'], getline(1,'$'))
|
||||||
" gv cannot be used in operator pending mode
|
" gv cannot be used in operator pending mode
|
||||||
call assert_beeps('normal! cgv')
|
call assert_beeps('normal! cgv')
|
||||||
" gv should beep without a previously selected visual area
|
" gv should beep without a previously selected visual area
|
||||||
new
|
new
|
||||||
|
@ -1434,7 +1434,7 @@ func Test_substitute_expr_switch_win()
|
|||||||
let bufnr = bufnr('%')
|
let bufnr = bufnr('%')
|
||||||
put ="abcdef"
|
put ="abcdef"
|
||||||
silent! s/\%')/\=R()
|
silent! s/\%')/\=R()
|
||||||
call assert_fails(':%s/./\=R()/g', 'E565')
|
call assert_fails(':%s/./\=R()/g', 'E565:')
|
||||||
delfunc R
|
delfunc R
|
||||||
exe bufnr .. "bw!"
|
exe bufnr .. "bw!"
|
||||||
endfunc
|
endfunc
|
||||||
|
@ -3109,7 +3109,7 @@ endfunc
|
|||||||
" should be given.
|
" should be given.
|
||||||
"
|
"
|
||||||
" This test reuses the function MESSAGES() from the previous test.
|
" This test reuses the function MESSAGES() from the previous test.
|
||||||
" This functions checks the messages in g:msgfile.
|
" This function checks the messages in g:msgfile.
|
||||||
"-------------------------------------------------------------------------------
|
"-------------------------------------------------------------------------------
|
||||||
|
|
||||||
func Test_nested_while_error()
|
func Test_nested_while_error()
|
||||||
@ -3236,7 +3236,7 @@ endfunc
|
|||||||
" error messages should be given.
|
" error messages should be given.
|
||||||
"
|
"
|
||||||
" This test reuses the function MESSAGES() from the previous test.
|
" This test reuses the function MESSAGES() from the previous test.
|
||||||
" This functions checks the messages in g:msgfile.
|
" This function checks the messages in g:msgfile.
|
||||||
"-------------------------------------------------------------------------------
|
"-------------------------------------------------------------------------------
|
||||||
|
|
||||||
func Test_nested_cont_break_error()
|
func Test_nested_cont_break_error()
|
||||||
@ -3344,7 +3344,7 @@ endfunc
|
|||||||
" should be given.
|
" should be given.
|
||||||
"
|
"
|
||||||
" This test reuses the function MESSAGES() from the previous test.
|
" This test reuses the function MESSAGES() from the previous test.
|
||||||
" This functions checks the messages in g:msgfile.
|
" This function check the messages in g:msgfile.
|
||||||
"-------------------------------------------------------------------------------
|
"-------------------------------------------------------------------------------
|
||||||
|
|
||||||
func Test_nested_endtry_error()
|
func Test_nested_endtry_error()
|
||||||
|
@ -236,7 +236,7 @@ func Test_ve_completion()
|
|||||||
set virtualedit=
|
set virtualedit=
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" Using "C" then then <CR> moves the last remaining character to the next
|
" Using "C" then <CR> moves the last remaining character to the next
|
||||||
" line. (Mary Ellen Foster)
|
" line. (Mary Ellen Foster)
|
||||||
func Test_ve_del_to_eol()
|
func Test_ve_del_to_eol()
|
||||||
new
|
new
|
||||||
|
Loading…
Reference in New Issue
Block a user