mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:7.4.2158
Problem: Result of getcompletion('', 'cscope') depends on previous
completion. (Christian Brabandt)
Solution: Call set_context_in_cscope_cmd().
b650b9878e
This commit is contained in:
parent
c8b6ec2e6a
commit
aeebed8d61
@ -9673,6 +9673,11 @@ static void f_getcompletion(typval_T *argvars, typval_T *rettv, FunPtr fptr)
|
||||
xpc.xp_pattern_len = STRLEN(xpc.xp_pattern);
|
||||
}
|
||||
|
||||
if (xpc.xp_context == EXPAND_CSCOPE) {
|
||||
set_context_in_cscope_cmd(&xpc, xpc.xp_pattern, CMD_cscope);
|
||||
xpc.xp_pattern_len = STRLEN(xpc.xp_pattern);
|
||||
}
|
||||
|
||||
pat = addstar(xpc.xp_pattern, xpc.xp_pattern_len, xpc.xp_context);
|
||||
rettv_list_alloc(rettv);
|
||||
if (pat != NULL) {
|
||||
|
@ -121,12 +121,22 @@ func Test_getcompletion()
|
||||
let l = getcompletion('dark', 'highlight')
|
||||
call assert_equal([], l)
|
||||
|
||||
if has('cscope')
|
||||
let l = getcompletion('', 'cscope')
|
||||
let cmds = ['add', 'find', 'help', 'kill', 'reset', 'show']
|
||||
call assert_equal(cmds, l)
|
||||
" using cmdline completion must not change the result
|
||||
call feedkeys(":cscope find \<c-d>\<c-c>", 'xt')
|
||||
let l = getcompletion('', 'cscope')
|
||||
call assert_equal(cmds, l)
|
||||
let keys = ['a', 'c', 'd', 'e', 'f', 'g', 'i', 's', 't']
|
||||
let l = getcompletion('find ', 'cscope')
|
||||
call assert_equal(keys, l)
|
||||
endif
|
||||
|
||||
" For others test if the name is recognized.
|
||||
let names = ['buffer', 'environment', 'file_in_path',
|
||||
\ 'mapping', 'shellcmd', 'tag', 'tag_listfiles', 'user']
|
||||
if has('cscope')
|
||||
call add(names, 'cscope')
|
||||
endif
|
||||
if has('cmdline_hist')
|
||||
call add(names, 'history')
|
||||
endif
|
||||
|
@ -283,7 +283,7 @@ static int included_patches[] = {
|
||||
// 2161,
|
||||
// 2160,
|
||||
// 2159,
|
||||
// 2158,
|
||||
2158,
|
||||
// 2157 NA
|
||||
// 2156 NA
|
||||
// 2155 NA
|
||||
|
Loading…
Reference in New Issue
Block a user