fix: skip path escaping when adding items to quickfix list (#1712)

This commit is contained in:
Daniel Imfeld
2022-03-06 09:34:44 -10:00
committed by GitHub
parent 1ebf53d8db
commit b501d9ecb7
2 changed files with 10 additions and 3 deletions

View File

@@ -623,7 +623,7 @@ local entry_to_qf = function(entry)
return {
bufnr = entry.bufnr,
filename = from_entry.path(entry, false),
filename = from_entry.path(entry, false, false),
lnum = vim.F.if_nil(entry.lnum, 1),
col = vim.F.if_nil(entry.col, 1),
text = text,