comparison src/proto/quickfix.pro @ 17940:079e10a49ea1 v8.1.1966

patch 8.1.1966: some code in options.c fits better elsewhere Commit: https://github.com/vim/vim/commit/e677df8d93772a705f40a94f3c871aee78fe4d99 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Sep 2 22:31:11 2019 +0200 patch 8.1.1966: some code in options.c fits better elsewhere Problem: Some code in options.c fits better elsewhere. Solution: Move functions from options.c to other files. (Yegappan Lakshmanan, closes #4889)
author Bram Moolenaar <Bram@vim.org>
date Mon, 02 Sep 2019 22:45:05 +0200
parents 0f7ae8010787
children 2c40e60017a8
comparison
equal deleted inserted replaced
17939:252ad11554ff 17940:079e10a49ea1
24 void ex_cc(exarg_T *eap); 24 void ex_cc(exarg_T *eap);
25 void ex_cnext(exarg_T *eap); 25 void ex_cnext(exarg_T *eap);
26 void ex_cbelow(exarg_T *eap); 26 void ex_cbelow(exarg_T *eap);
27 void ex_cfile(exarg_T *eap); 27 void ex_cfile(exarg_T *eap);
28 void ex_vimgrep(exarg_T *eap); 28 void ex_vimgrep(exarg_T *eap);
29 int get_errorlist(qf_info_T *qi_arg, win_T *wp, int qf_idx, list_T *list);
30 int qf_get_properties(win_T *wp, dict_T *what, dict_T *retdict);
31 int set_errorlist(win_T *wp, list_T *list, int action, char_u *title, dict_T *what); 29 int set_errorlist(win_T *wp, list_T *list, int action, char_u *title, dict_T *what);
32 int set_ref_in_quickfix(int copyID); 30 int set_ref_in_quickfix(int copyID);
33 void ex_cbuffer(exarg_T *eap); 31 void ex_cbuffer(exarg_T *eap);
34 void ex_cexpr(exarg_T *eap); 32 void ex_cexpr(exarg_T *eap);
35 void ex_helpgrep(exarg_T *eap); 33 void ex_helpgrep(exarg_T *eap);
34 void f_getloclist(typval_T *argvars, typval_T *rettv);
35 void f_getqflist(typval_T *argvars, typval_T *rettv);
36 void f_setloclist(typval_T *argvars, typval_T *rettv);
37 void f_setqflist(typval_T *argvars, typval_T *rettv);
36 /* vim: set ft=c : */ 38 /* vim: set ft=c : */