forked from aniani/vim
patch 9.0.0059: test file has wrong name
Problem: Test file has wrong name. Solution: Rename the file. Various small fixes. (closes #10674)
This commit is contained in:
parent
81a3ff97e2
commit
bb404f5ad5
@ -2436,7 +2436,7 @@ handle_mapping(
|
|||||||
int local_State = get_real_state();
|
int local_State = get_real_state();
|
||||||
int is_plug_map = FALSE;
|
int is_plug_map = FALSE;
|
||||||
|
|
||||||
// If typehead starts with <Plug> then remap, even for a "noremap" mapping.
|
// If typeahead starts with <Plug> then remap, even for a "noremap" mapping.
|
||||||
if (typebuf.tb_len >= 3
|
if (typebuf.tb_len >= 3
|
||||||
&& typebuf.tb_buf[typebuf.tb_off] == K_SPECIAL
|
&& typebuf.tb_buf[typebuf.tb_off] == K_SPECIAL
|
||||||
&& typebuf.tb_buf[typebuf.tb_off + 1] == KS_EXTRA
|
&& typebuf.tb_buf[typebuf.tb_off + 1] == KS_EXTRA
|
||||||
|
@ -125,7 +125,6 @@ NEW_TESTS = \
|
|||||||
test_expand_func \
|
test_expand_func \
|
||||||
test_expr \
|
test_expr \
|
||||||
test_expr_utf8 \
|
test_expr_utf8 \
|
||||||
test_feedkeys \
|
|
||||||
test_file_perm \
|
test_file_perm \
|
||||||
test_file_size \
|
test_file_size \
|
||||||
test_filechanged \
|
test_filechanged \
|
||||||
@ -164,6 +163,7 @@ NEW_TESTS = \
|
|||||||
test_increment \
|
test_increment \
|
||||||
test_increment_dbcs \
|
test_increment_dbcs \
|
||||||
test_indent \
|
test_indent \
|
||||||
|
test_input \
|
||||||
test_ins_complete \
|
test_ins_complete \
|
||||||
test_ins_complete_no_halt \
|
test_ins_complete_no_halt \
|
||||||
test_interrupt \
|
test_interrupt \
|
||||||
@ -408,6 +408,7 @@ NEW_TESTS_RES = \
|
|||||||
test_increment.res \
|
test_increment.res \
|
||||||
test_increment_dbcs.res \
|
test_increment_dbcs.res \
|
||||||
test_indent.res \
|
test_indent.res \
|
||||||
|
test_input.res \
|
||||||
test_ins_complete.res \
|
test_ins_complete.res \
|
||||||
test_ins_complete_no_halt.res \
|
test_ins_complete_no_halt.res \
|
||||||
test_interrupt.res \
|
test_interrupt.res \
|
||||||
|
@ -11,7 +11,6 @@ source test_ex_mode.vim
|
|||||||
source test_expand.vim
|
source test_expand.vim
|
||||||
source test_expand_dllpath.vim
|
source test_expand_dllpath.vim
|
||||||
source test_expand_func.vim
|
source test_expand_func.vim
|
||||||
source test_feedkeys.vim
|
|
||||||
source test_file_perm.vim
|
source test_file_perm.vim
|
||||||
source test_fnamemodify.vim
|
source test_fnamemodify.vim
|
||||||
source test_ga.vim
|
source test_ga.vim
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
" Test feedkeys() function.
|
" Tests for character input and feedkeys() function.
|
||||||
|
|
||||||
func Test_feedkeys_x_with_empty_string()
|
func Test_feedkeys_x_with_empty_string()
|
||||||
new
|
new
|
||||||
@ -34,4 +34,28 @@ func Test_feedkeys_escape_special()
|
|||||||
nunmap …
|
nunmap …
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
func Test_input_simplify_ctrl_at()
|
||||||
|
new
|
||||||
|
" feeding unsimplified CTRL-@ should still trigger i_CTRL-@
|
||||||
|
call feedkeys("ifoo\<Esc>A\<*C-@>x", 'xt')
|
||||||
|
call assert_equal('foofo', getline(1))
|
||||||
|
bw!
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_input_simplify_noremap()
|
||||||
|
call feedkeys("i\<*C-M>", 'nx')
|
||||||
|
call assert_equal('', getline(1))
|
||||||
|
call assert_equal([0, 2, 1, 0, 1], getcurpos())
|
||||||
|
bw!
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_input_simplify_timedout()
|
||||||
|
inoremap <C-M>a b
|
||||||
|
call feedkeys("i\<*C-M>", 'xt')
|
||||||
|
call assert_equal('', getline(1))
|
||||||
|
call assert_equal([0, 2, 1, 0, 1], getcurpos())
|
||||||
|
iunmap <C-M>a
|
||||||
|
bw!
|
||||||
|
endfunc
|
||||||
|
|
||||||
" vim: shiftwidth=2 sts=2 expandtab
|
" vim: shiftwidth=2 sts=2 expandtab
|
@ -65,7 +65,9 @@ func Test_pastetoggle()
|
|||||||
let &pastetoggle = str
|
let &pastetoggle = str
|
||||||
call assert_equal(str, &pastetoggle)
|
call assert_equal(str, &pastetoggle)
|
||||||
call assert_equal("\n pastetoggle=" .. strtrans(str), execute('set pastetoggle?'))
|
call assert_equal("\n pastetoggle=" .. strtrans(str), execute('set pastetoggle?'))
|
||||||
|
|
||||||
unlet str
|
unlet str
|
||||||
|
set pastetoggle&
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_wildchar()
|
func Test_wildchar()
|
||||||
@ -899,7 +901,6 @@ endfunc
|
|||||||
func Test_rightleftcmd()
|
func Test_rightleftcmd()
|
||||||
CheckFeature rightleft
|
CheckFeature rightleft
|
||||||
set rightleft
|
set rightleft
|
||||||
set rightleftcmd
|
|
||||||
|
|
||||||
let g:l = []
|
let g:l = []
|
||||||
func AddPos()
|
func AddPos()
|
||||||
@ -908,6 +909,13 @@ func Test_rightleftcmd()
|
|||||||
endfunc
|
endfunc
|
||||||
cmap <expr> <F2> AddPos()
|
cmap <expr> <F2> AddPos()
|
||||||
|
|
||||||
|
set rightleftcmd=
|
||||||
|
call feedkeys("/\<F2>abc\<Right>\<F2>\<Left>\<Left>\<F2>" ..
|
||||||
|
\ "\<Right>\<F2>\<Esc>", 'xt')
|
||||||
|
call assert_equal([2, 5, 3, 4], g:l)
|
||||||
|
|
||||||
|
let g:l = []
|
||||||
|
set rightleftcmd=search
|
||||||
call feedkeys("/\<F2>abc\<Left>\<F2>\<Right>\<Right>\<F2>" ..
|
call feedkeys("/\<F2>abc\<Left>\<F2>\<Right>\<Right>\<F2>" ..
|
||||||
\ "\<Left>\<F2>\<Esc>", 'xt')
|
\ "\<Left>\<F2>\<Esc>", 'xt')
|
||||||
call assert_equal([&co - 1, &co - 4, &co - 2, &co - 3], g:l)
|
call assert_equal([&co - 1, &co - 4, &co - 2, &co - 3], g:l)
|
||||||
|
@ -7,6 +7,14 @@ source view_util.vim
|
|||||||
source check.vim
|
source check.vim
|
||||||
source screendump.vim
|
source screendump.vim
|
||||||
|
|
||||||
|
func SetUp()
|
||||||
|
set laststatus=2
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func TearDown()
|
||||||
|
set laststatus&
|
||||||
|
endfunc
|
||||||
|
|
||||||
func s:get_statusline()
|
func s:get_statusline()
|
||||||
return ScreenLines(&lines - 1, &columns)[0]
|
return ScreenLines(&lines - 1, &columns)[0]
|
||||||
endfunc
|
endfunc
|
||||||
@ -35,7 +43,6 @@ endfunc
|
|||||||
|
|
||||||
func Test_caught_error_in_statusline()
|
func Test_caught_error_in_statusline()
|
||||||
let s:func_in_statusline_called = 0
|
let s:func_in_statusline_called = 0
|
||||||
set laststatus=2
|
|
||||||
let statusline = '%{StatuslineWithCaughtError()}'
|
let statusline = '%{StatuslineWithCaughtError()}'
|
||||||
let &statusline = statusline
|
let &statusline = statusline
|
||||||
redrawstatus
|
redrawstatus
|
||||||
@ -46,7 +53,6 @@ endfunc
|
|||||||
|
|
||||||
func Test_statusline_will_be_disabled_with_error()
|
func Test_statusline_will_be_disabled_with_error()
|
||||||
let s:func_in_statusline_called = 0
|
let s:func_in_statusline_called = 0
|
||||||
set laststatus=2
|
|
||||||
let statusline = '%{StatuslineWithError()}'
|
let statusline = '%{StatuslineWithError()}'
|
||||||
try
|
try
|
||||||
let &statusline = statusline
|
let &statusline = statusline
|
||||||
@ -73,7 +79,6 @@ func Test_statusline()
|
|||||||
call assert_match('^ ((2) of 2)\s*$', s:get_statusline())
|
call assert_match('^ ((2) of 2)\s*$', s:get_statusline())
|
||||||
|
|
||||||
only
|
only
|
||||||
set laststatus=2
|
|
||||||
set splitbelow
|
set splitbelow
|
||||||
call setline(1, range(1, 10000))
|
call setline(1, range(1, 10000))
|
||||||
|
|
||||||
@ -432,7 +437,6 @@ func Test_statusline()
|
|||||||
%bw!
|
%bw!
|
||||||
call delete('Xstatusline')
|
call delete('Xstatusline')
|
||||||
set statusline&
|
set statusline&
|
||||||
set laststatus&
|
|
||||||
set splitbelow&
|
set splitbelow&
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
@ -518,7 +522,6 @@ endfunc
|
|||||||
" with a custom 'statusline'
|
" with a custom 'statusline'
|
||||||
func Test_statusline_mbyte_fillchar()
|
func Test_statusline_mbyte_fillchar()
|
||||||
only
|
only
|
||||||
set laststatus=2
|
|
||||||
set fillchars=vert:\|,fold:-,stl:━,stlnc:═
|
set fillchars=vert:\|,fold:-,stl:━,stlnc:═
|
||||||
set statusline=a%=b
|
set statusline=a%=b
|
||||||
call assert_match('^a\+━\+b$', s:get_statusline())
|
call assert_match('^a\+━\+b$', s:get_statusline())
|
||||||
@ -526,7 +529,7 @@ func Test_statusline_mbyte_fillchar()
|
|||||||
call assert_match('^a\+━\+b━a\+═\+b$', s:get_statusline())
|
call assert_match('^a\+━\+b━a\+═\+b$', s:get_statusline())
|
||||||
wincmd w
|
wincmd w
|
||||||
call assert_match('^a\+═\+b═a\+━\+b$', s:get_statusline())
|
call assert_match('^a\+═\+b═a\+━\+b$', s:get_statusline())
|
||||||
set statusline& fillchars& laststatus&
|
set statusline& fillchars&
|
||||||
%bw!
|
%bw!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
@ -2437,28 +2437,5 @@ func Test_terminal_builtin_without_gui()
|
|||||||
call assert_notequal(-1, index(output, 'builtin_dumb'))
|
call assert_notequal(-1, index(output, 'builtin_dumb'))
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_simplify_ctrl_at()
|
|
||||||
" feeding unsimplified CTRL-@ should still trigger i_CTRL-@
|
|
||||||
call feedkeys("ifoo\<Esc>A\<*C-@>x", 'xt')
|
|
||||||
call assert_equal('foofo', getline(1))
|
|
||||||
bw!
|
|
||||||
endfunc
|
|
||||||
|
|
||||||
func Test_simplify_noremap()
|
|
||||||
call feedkeys("i\<*C-M>", 'nx')
|
|
||||||
call assert_equal('', getline(1))
|
|
||||||
call assert_equal([0, 2, 1, 0, 1], getcurpos())
|
|
||||||
bw!
|
|
||||||
endfunc
|
|
||||||
|
|
||||||
func Test_simplify_timedout()
|
|
||||||
inoremap <C-M>a b
|
|
||||||
call feedkeys("i\<*C-M>", 'xt')
|
|
||||||
call assert_equal('', getline(1))
|
|
||||||
call assert_equal([0, 2, 1, 0, 1], getcurpos())
|
|
||||||
iunmap <C-M>a
|
|
||||||
bw!
|
|
||||||
endfunc
|
|
||||||
|
|
||||||
|
|
||||||
" vim: shiftwidth=2 sts=2 expandtab
|
" vim: shiftwidth=2 sts=2 expandtab
|
||||||
|
@ -369,7 +369,7 @@ endfunc
|
|||||||
|
|
||||||
" Test that the garbage collector isn't triggered if a timer callback invokes
|
" Test that the garbage collector isn't triggered if a timer callback invokes
|
||||||
" vgetc().
|
" vgetc().
|
||||||
func Test_timer_nocatch_garbage_collect()
|
func Test_nocatch_timer_garbage_collect()
|
||||||
" 'uptimetime. must be bigger than the timer timeout
|
" 'uptimetime. must be bigger than the timer timeout
|
||||||
set ut=200
|
set ut=200
|
||||||
call test_garbagecollect_soon()
|
call test_garbagecollect_soon()
|
||||||
|
@ -735,6 +735,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
59,
|
||||||
/**/
|
/**/
|
||||||
58,
|
58,
|
||||||
/**/
|
/**/
|
||||||
|
@ -2819,7 +2819,7 @@ long elapsed(DWORD start_tick);
|
|||||||
#define UC_BUFFER 1 // -buffer: local to current buffer
|
#define UC_BUFFER 1 // -buffer: local to current buffer
|
||||||
#define UC_VIM9 2 // {} argument: Vim9 syntax.
|
#define UC_VIM9 2 // {} argument: Vim9 syntax.
|
||||||
|
|
||||||
// flags used by vim_strsave_escaped()
|
// flags used by vim_strsave_fnameescape()
|
||||||
#define VSE_NONE 0
|
#define VSE_NONE 0
|
||||||
#define VSE_SHELL 1 // escape for a shell command
|
#define VSE_SHELL 1 // escape for a shell command
|
||||||
#define VSE_BUFFER 2 // escape for a ":buffer" command
|
#define VSE_BUFFER 2 // escape for a ":buffer" command
|
||||||
|
Loading…
x
Reference in New Issue
Block a user