diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-09-11 19:31:28 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-09-11 19:31:28 +0200 |
commit | b4d5fbabc99917a8069ba32a60c2d73d4f60e128 (patch) | |
tree | 7a3c17d3362f21ce9263283730a8f6ddea6c9cc6 /src/proto | |
parent | 45d5f26d11d9aac2383453d2c1a8582cad1c8a3d (diff) | |
download | vim-b4d5fbabc99917a8069ba32a60c2d73d4f60e128.zip |
patch 8.0.1093: various small quickfix issues
Problem: Various small quickfix issues.
Solution: Remove ":" prefix from title set by a user. Add the qf_id2nr().
function. Add a couple more tests. Update documentation.
(Yegappan Lakshmanan)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/quickfix.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/quickfix.pro b/src/proto/quickfix.pro index ad6ad3433..a801edd0e 100644 --- a/src/proto/quickfix.pro +++ b/src/proto/quickfix.pro @@ -22,7 +22,7 @@ void ex_cnext(exarg_T *eap); void ex_cfile(exarg_T *eap); void ex_vimgrep(exarg_T *eap); int get_errorlist(qf_info_T *qi, win_T *wp, int qf_idx, list_T *list); -int get_errorlist_properties(win_T *wp, dict_T *what, dict_T *retdict); +int qf_get_properties(win_T *wp, dict_T *what, dict_T *retdict); int set_errorlist(win_T *wp, list_T *list, int action, char_u *title, dict_T *what); int set_ref_in_quickfix(int copyID); void ex_cbuffer(exarg_T *eap); |