mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.3944: insert mode completion functions are too long
Problem: Insert mode completion functions are too long. Solution: Split up into multiple functions. (Yegappan Lakshmanan, closes #9431)
This commit is contained in:
parent
491669701c
commit
5d2e007ccb
1346
src/insexpand.c
1346
src/insexpand.c
File diff suppressed because it is too large
Load Diff
@ -900,6 +900,25 @@ func Test_complete_stop()
|
||||
close!
|
||||
endfunc
|
||||
|
||||
" Test for typing CTRL-R in insert completion mode to insert a register
|
||||
" content.
|
||||
func Test_complete_reginsert()
|
||||
new
|
||||
call setline(1, ['a1', 'a12', 'a123', 'a1234'])
|
||||
|
||||
" if a valid CTRL-X mode key is returned from <C-R>=, then it should be
|
||||
" processed. Otherwise, CTRL-X mode should be stopped and the key should be
|
||||
" inserted.
|
||||
exe "normal Goa\<C-P>\<C-R>=\"\\<C-P>\"\<CR>"
|
||||
call assert_equal('a123', getline(5))
|
||||
let @r = "\<C-P>\<C-P>"
|
||||
exe "normal GCa\<C-P>\<C-R>r"
|
||||
call assert_equal('a12', getline(5))
|
||||
exe "normal GCa\<C-P>\<C-R>=\"x\"\<CR>"
|
||||
call assert_equal('a1234x', getline(5))
|
||||
bw!
|
||||
endfunc
|
||||
|
||||
func Test_issue_7021()
|
||||
CheckMSWindows
|
||||
|
||||
|
@ -749,6 +749,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
3944,
|
||||
/**/
|
||||
3943,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user