fix: error using dictionary as a string when running send_to_qflist (#622)

This commit is contained in:
oberblastmeister
2021-03-07 02:50:57 -05:00
committed by GitHub
parent 68c30dd560
commit 1c80a92d40

View File

@@ -380,7 +380,7 @@ local entry_to_qf = function(entry)
filename = entry.filename,
lnum = entry.lnum,
col = entry.col,
text = entry.value,
text = entry.text or entry.value.text or entry.value,
}
end