diff options
author | James McCoy <jamessan@jamessan.com> | 2017-12-18 21:40:34 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-12-18 21:44:42 -0500 |
commit | 4d2d844c12e1a94a5d3cbe93794bb04ef6fb8377 (patch) | |
tree | 5cca26337cd4853b088a6a9af0035b21f2556032 /src/nvim/quickfix.c | |
parent | 9fb7926a0dbc08daf19fca5eb93f95ae83a6303c (diff) | |
download | rneovim-4d2d844c12e1a94a5d3cbe93794bb04ef6fb8377.tar.gz rneovim-4d2d844c12e1a94a5d3cbe93794bb04ef6fb8377.tar.bz2 rneovim-4d2d844c12e1a94a5d3cbe93794bb04ef6fb8377.zip |
vim-patch:8.0.0580: cannot set the valid flag with setqflist()
Problem: Cannot set the valid flag with setqflist().
Solution: Add the "valid" argument. (Yegappan Lakshmanan, closes vim/vim#1642)
https://github.com/vim/vim/commit/f1d21c8cc83f40c815b6bf13cd2043152db533ee
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index ee3bb1dfba..d77cec4fd8 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -4189,6 +4189,11 @@ static int qf_add_entries(qf_info_T *qi, list_T *list, char_u *title, bufnum = 0; } + // If the 'valid' field is present it overrules the detected value. + if (tv_dict_find(d, "valid", -1) != NULL) { + valid = (int)tv_dict_get_number(d, "valid"); + } + int status = qf_add_entry(qi, NULL, // dir (char_u *)filename, |