mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.0.0125
Problem: Not enough testing for entering Ex commands.
Solution: Add test for CTRL-\ e {expr}. (Dominique Pelle)
eaaa9bbda6
This commit is contained in:
parent
11429f9429
commit
69a201d6c5
@ -230,9 +230,26 @@ func Test_paste_in_cmdline()
|
|||||||
|
|
||||||
call feedkeys("f;:aaa \<C-R>\<C-A> bbb\<C-B>\"\<CR>", 'tx')
|
call feedkeys("f;:aaa \<C-R>\<C-A> bbb\<C-B>\"\<CR>", 'tx')
|
||||||
call assert_equal('"aaa a;b-c*d bbb', @:)
|
call assert_equal('"aaa a;b-c*d bbb', @:)
|
||||||
|
|
||||||
|
call feedkeys(":\<C-\>etoupper(getline(1))\<CR>\<C-B>\"\<CR>", 'tx')
|
||||||
|
call assert_equal('"ASDF.X /TMP/SOME VERYLONGWORD A;B-C*D ', @:)
|
||||||
bwipe!
|
bwipe!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
func Test_remove_char_in_cmdline()
|
||||||
|
call feedkeys(":abc def\<S-Left>\<Del>\<C-B>\"\<CR>", 'tx')
|
||||||
|
call assert_equal('"abc ef', @:)
|
||||||
|
|
||||||
|
call feedkeys(":abc def\<S-Left>\<BS>\<C-B>\"\<CR>", 'tx')
|
||||||
|
call assert_equal('"abcdef', @:)
|
||||||
|
|
||||||
|
call feedkeys(":abc def ghi\<S-Left>\<C-W>\<C-B>\"\<CR>", 'tx')
|
||||||
|
call assert_equal('"abc ghi', @:)
|
||||||
|
|
||||||
|
call feedkeys(":abc def\<S-Left>\<C-U>\<C-B>\"\<CR>", 'tx')
|
||||||
|
call assert_equal('"def', @:)
|
||||||
|
endfunc
|
||||||
|
|
||||||
func Test_illegal_address()
|
func Test_illegal_address()
|
||||||
new
|
new
|
||||||
2;'(
|
2;'(
|
||||||
|
@ -827,7 +827,7 @@ static const int included_patches[] = {
|
|||||||
128,
|
128,
|
||||||
127,
|
127,
|
||||||
126,
|
126,
|
||||||
// 125,
|
125,
|
||||||
124,
|
124,
|
||||||
// 123 NA
|
// 123 NA
|
||||||
// 122 NA
|
// 122 NA
|
||||||
|
Loading…
Reference in New Issue
Block a user