mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
Merge pull request #1197 from Shougo/vim-patch-7.4.392
vim-patch:7.4.392
This commit is contained in:
commit
0ed9f3ec83
@ -6388,6 +6388,7 @@ static struct fst {
|
||||
{"getcmdline", 0, 0, f_getcmdline},
|
||||
{"getcmdpos", 0, 0, f_getcmdpos},
|
||||
{"getcmdtype", 0, 0, f_getcmdtype},
|
||||
{"getcmdwintype", 0, 0, f_getcmdwintype},
|
||||
{"getcurpos", 0, 0, f_getcurpos},
|
||||
{"getcwd", 0, 0, f_getcwd},
|
||||
{"getfontname", 0, 1, f_getfontname},
|
||||
@ -9155,6 +9156,17 @@ static void f_getcmdtype(typval_T *argvars, typval_T *rettv)
|
||||
rettv->vval.v_string[0] = get_cmdline_type();
|
||||
}
|
||||
|
||||
/*
|
||||
* "getcmdwintype()" function
|
||||
*/
|
||||
static void f_getcmdwintype(typval_T *argvars, typval_T *rettv)
|
||||
{
|
||||
rettv->v_type = VAR_STRING;
|
||||
rettv->vval.v_string = NULL;
|
||||
rettv->vval.v_string = xmallocz(1);
|
||||
rettv->vval.v_string[0] = cmdwin_type;
|
||||
}
|
||||
|
||||
/*
|
||||
* "getcwd()" function
|
||||
*/
|
||||
|
@ -236,7 +236,7 @@ static int included_patches[] = {
|
||||
//395,
|
||||
//394,
|
||||
//393,
|
||||
//392,
|
||||
392,
|
||||
//391,
|
||||
//390,
|
||||
//389,
|
||||
|
Loading…
Reference in New Issue
Block a user