diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-04-14 16:54:33 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-04-14 19:09:19 -0400 |
commit | e52f6f21a116a85fc90e273a7ddede7013520231 (patch) | |
tree | afa4261fcd27a1a1ac7b271a10cd601e9884ec5a /src/nvim/eval.c | |
parent | 6de1ed1ff11a59b063ae8d199aab17977d7b445f (diff) | |
download | rneovim-e52f6f21a116a85fc90e273a7ddede7013520231.tar.gz rneovim-e52f6f21a116a85fc90e273a7ddede7013520231.tar.bz2 rneovim-e52f6f21a116a85fc90e273a7ddede7013520231.zip |
vim-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)
https://github.com/vim/vim/commit/b4d5fbabc99917a8069ba32a60c2d73d4f60e128
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 86333acbef..9f88f1e393 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -10065,7 +10065,7 @@ static void get_qf_loc_list(int is_qf, win_T *wp, typval_T *what_arg, dict_T *d = what_arg->vval.v_dict; if (d != NULL) { - get_errorlist_properties(wp, d, rettv->vval.v_dict); + qf_get_properties(wp, d, rettv->vval.v_dict); } } else { EMSG(_(e_dictreq)); |