mirror of
https://github.com/neovim/neovim.git
synced 2026-01-04 18:37:02 +10:00
docs: fix typos (#20394)
Co-authored-by: Raphael <glephunter@gmail.com> Co-authored-by: smjonas <jonas.strittmatter@gmx.de> Co-authored-by: zeertzjq <zeertzjq@outlook.com>
This commit is contained in:
@@ -310,18 +310,18 @@ describe('clipboard (with fake clipboard.vim)', function()
|
||||
insert([[
|
||||
text:
|
||||
first line
|
||||
secound line
|
||||
second line
|
||||
third line]])
|
||||
|
||||
feed('G"+dd"*dddd"+p"*pp')
|
||||
expect([[
|
||||
text:
|
||||
third line
|
||||
secound line
|
||||
second line
|
||||
first line]])
|
||||
-- linewise selection should be encoded as an extra newline
|
||||
eq({{'third line', ''}, 'V'}, eval("g:test_clip['+']"))
|
||||
eq({{'secound line', ''}, 'V'}, eval("g:test_clip['*']"))
|
||||
eq({{'second line', ''}, 'V'}, eval("g:test_clip['*']"))
|
||||
end)
|
||||
|
||||
it('handles null bytes when pasting and in getreg', function()
|
||||
@@ -477,7 +477,7 @@ describe('clipboard (with fake clipboard.vim)', function()
|
||||
expect("indeed star")
|
||||
end)
|
||||
|
||||
it('unamed operations work even if the provider fails', function()
|
||||
it('unnamed operations work even if the provider fails', function()
|
||||
insert('the text')
|
||||
feed('yy')
|
||||
feed_command("let g:cliperror = 1")
|
||||
@@ -511,7 +511,7 @@ describe('clipboard (with fake clipboard.vim)', function()
|
||||
eq('textstar', meths.get_current_line())
|
||||
end)
|
||||
|
||||
it('Block paste works currectly', function()
|
||||
it('Block paste works correctly', function()
|
||||
insert([[
|
||||
aabbcc
|
||||
ddeeff
|
||||
@@ -559,7 +559,7 @@ describe('clipboard (with fake clipboard.vim)', function()
|
||||
eq({{'really unnamed', ''}, 'V'}, eval("g:test_clip['+']"))
|
||||
eq({{'really unnamed', ''}, 'V'}, eval("g:test_clip['*']"))
|
||||
|
||||
-- unnamedplus takes predecence when pasting
|
||||
-- unnamedplus takes precedence when pasting
|
||||
eq('+', eval('v:register'))
|
||||
feed_command("let g:test_clip['+'] = ['the plus','']")
|
||||
feed_command("let g:test_clip['*'] = ['the star','']")
|
||||
|
||||
Reference in New Issue
Block a user