comparison src/proto/eval.pro @ 14964:2c0bfa167468 v8.1.0493

patch 8.1.0493: argv() and argc() only work on the current argument list commit https://github.com/vim/vim/commit/e6e3989c1b3f18907a0c305712b867e9a3821369 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 25 12:32:11 2018 +0200 patch 8.1.0493: argv() and argc() only work on the current argument list Problem: argv() and argc() only work on the current argument list. Solution: Add a window ID argument. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/832)
author Bram Moolenaar <Bram@vim.org>
date Thu, 25 Oct 2018 12:45:05 +0200
parents 0a3b9ecf7cb8
children de63593896b3
comparison
equal deleted inserted replaced
14963:81993fcbec84 14964:2c0bfa167468
109 void get_user_input(typval_T *argvars, typval_T *rettv, int inputdialog, int secret); 109 void get_user_input(typval_T *argvars, typval_T *rettv, int inputdialog, int secret);
110 void ex_echo(exarg_T *eap); 110 void ex_echo(exarg_T *eap);
111 void ex_echohl(exarg_T *eap); 111 void ex_echohl(exarg_T *eap);
112 void ex_execute(exarg_T *eap); 112 void ex_execute(exarg_T *eap);
113 win_T *find_win_by_nr(typval_T *vp, tabpage_T *tp); 113 win_T *find_win_by_nr(typval_T *vp, tabpage_T *tp);
114 win_T *find_win_by_nr_or_id(typval_T *vp);
114 win_T *find_tabwin(typval_T *wvp, typval_T *tvp); 115 win_T *find_tabwin(typval_T *wvp, typval_T *tvp);
115 void getwinvar(typval_T *argvars, typval_T *rettv, int off); 116 void getwinvar(typval_T *argvars, typval_T *rettv, int off);
116 void setwinvar(typval_T *argvars, typval_T *rettv, int off); 117 void setwinvar(typval_T *argvars, typval_T *rettv, int off);
117 char_u *autoload_name(char_u *name); 118 char_u *autoload_name(char_u *name);
118 int script_autoload(char_u *name, int reload); 119 int script_autoload(char_u *name, int reload);